@opengov/ppf-backend-types
Advanced tools
Comparing version 1.6.1 to 1.6.2
@@ -6,2 +6,13 @@ # Change Log | ||
## [1.6.2](https://github.com/OpenGov/pluggable-payments/compare/@opengov/ppf-backend-types@1.6.1...@opengov/ppf-backend-types@1.6.2) (2024-01-12) | ||
### Bug Fixes | ||
* **pacefuze:** Multiple fixes for PaceFuze [SW-16457] ([#129](https://github.com/OpenGov/pluggable-payments/issues/129)) ([bb03758](https://github.com/OpenGov/pluggable-payments/commit/bb03758ba2e668bc8e622a737de1c19638cd9066)) | ||
## [1.6.1](https://github.com/OpenGov/pluggable-payments/compare/@opengov/ppf-backend-types@1.6.0...@opengov/ppf-backend-types@1.6.1) (2024-01-10) | ||
@@ -8,0 +19,0 @@ |
@@ -112,2 +112,3 @@ import type { PaymentProcessorFlow } from "./enums"; | ||
last4?: Maybe<Scalars["String"]>; | ||
cardType?: Maybe<CardType>; | ||
}; | ||
@@ -289,14 +290,27 @@ export type ECheckDetails = { | ||
}; | ||
export type ChargeDetails = { | ||
label: Scalars["String"]; | ||
paymentID: Scalars["String"]; | ||
chargeAmount: Scalars["Float"]; | ||
currencyCode?: InputMaybe<Scalars["String"]>; | ||
}; | ||
export type TerminalPaymentFlowRequest = { | ||
/** Payment plug processor */ | ||
processorId: PaymentProcessorId; | ||
/** User initiating or on behalf of whom the payment is being made */ | ||
userId: Scalars["ID"]; | ||
ledgerId: Scalars["ID"]; | ||
/** Unique payent transaction reference in integrator system */ | ||
paymentID: Scalars["String"]; | ||
/** Integrator system or client system or tenant */ | ||
entityID: Scalars["String"]; | ||
/** Amount to be paid */ | ||
amount: Scalars["Float"]; | ||
/** Type of payment channel for transaction */ | ||
paymentMethod: PaymentMethod; | ||
chargeDetails: ChargeDetails; | ||
/** Identifier for terminal device */ | ||
terminalID: Scalars["String"]; | ||
/** Type of terminal device */ | ||
terminalType: Scalars["String"]; | ||
/** Options if need to mention for terminal device */ | ||
terminalOptions?: InputMaybe<Scalars["String"]>; | ||
/** Processing fee to be paid */ | ||
processingFee?: InputMaybe<Scalars["Float"]>; | ||
currency?: InputMaybe<Scalars["String"]>; | ||
sourceApp?: InputMaybe<Scalars["String"]>; | ||
description?: InputMaybe<Scalars["String"]>; | ||
applicationMetadata?: InputMaybe<ApplicationMetadata>; | ||
}; | ||
@@ -306,3 +320,9 @@ export type TerminalPaymentFlowResponse = FlowResponseType & { | ||
flowType: PaymentProcessorFlow; | ||
paymentID: Scalars["ID"]; | ||
txnReferenceId: Scalars["String"]; | ||
txnApprovalStatus: Scalars["String"]; | ||
txnSessionId: Scalars["Int"]; | ||
txnSessionResultStatus: TerminalPaySessionResultStatus; | ||
txnSessionMessage?: Maybe<Scalars["String"]>; | ||
serviceFeeAmount?: Maybe<Scalars["Float"]>; | ||
paymentMethodDetails: PaymentMethodDetails; | ||
}; | ||
@@ -346,3 +366,5 @@ export type OneTimePaymentFlowRequest = { | ||
flowType: PaymentProcessorFlow; | ||
status: Scalars["String"]; | ||
paymentAccountToken?: Maybe<Scalars["PaymentAccountToken"]>; | ||
paymentMethodDetails?: Maybe<PaymentMethodDetails>; | ||
}; | ||
@@ -385,2 +407,16 @@ export type ConfigPluginFlowRequest = { | ||
}; | ||
export declare enum CardType { | ||
UNKNOWN = "UNKNOWN", | ||
AMERICAN_EXPRESS = "AMERICAN_EXPRESS", | ||
DISCOVER = "DISCOVER", | ||
MASTERCARD = "MASTERCARD", | ||
VISA = "VISA" | ||
} | ||
export declare enum TerminalPaySessionResultStatus { | ||
APPROVED = "APPROVED", | ||
DECLINED = "DECLINED", | ||
ERROR = "ERROR", | ||
IN_PROGRESS = "IN_PROGRESS", | ||
UNKNOWN = "UNKNOWN" | ||
} | ||
export { ImplementationTeam }; | ||
@@ -423,5 +459,9 @@ export { PaymentMethod }; | ||
paymentMethodDetails: ResolversTypes["PaymentMethodDetails"]; | ||
}) | TerminalPaymentFlowResponse | (Omit<OneTimePaymentFlowResponse, "paymentMethodDetails"> & { | ||
}) | (Omit<TerminalPaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails: ResolversTypes["PaymentMethodDetails"]; | ||
}) | FuturePaymentFlowResponse | ConfigPluginFlowResponse | InvalidSignature | InvalidFlowResult; | ||
}) | (Omit<OneTimePaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails: ResolversTypes["PaymentMethodDetails"]; | ||
}) | (Omit<FuturePaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails?: Maybe<ResolversTypes["PaymentMethodDetails"]>; | ||
}) | ConfigPluginFlowResponse | InvalidSignature | InvalidFlowResult; | ||
FlowGrantResponse: FlowGrant | FlowUnsupported | FlowRequestInvalid; | ||
@@ -436,5 +476,9 @@ PaymentMethodDetails: Card | ECheck; | ||
paymentMethodDetails: ResolversParentTypes["PaymentMethodDetails"]; | ||
}) | TerminalPaymentFlowResponse | (Omit<OneTimePaymentFlowResponse, "paymentMethodDetails"> & { | ||
}) | (Omit<TerminalPaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails: ResolversParentTypes["PaymentMethodDetails"]; | ||
}) | FuturePaymentFlowResponse | ConfigPluginFlowResponse | InvalidSignature | InvalidFlowResult; | ||
}) | (Omit<OneTimePaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails: ResolversParentTypes["PaymentMethodDetails"]; | ||
}) | (Omit<FuturePaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails?: Maybe<ResolversParentTypes["PaymentMethodDetails"]>; | ||
}) | ConfigPluginFlowResponse | InvalidSignature | InvalidFlowResult; | ||
FlowGrantResponse: FlowGrant | FlowUnsupported | FlowRequestInvalid; | ||
@@ -483,5 +527,6 @@ PaymentMethodDetails: Card | ECheck; | ||
}>; | ||
ChargeDetails: ChargeDetails; | ||
TerminalPaymentFlowRequest: TerminalPaymentFlowRequest; | ||
TerminalPaymentFlowResponse: ResolverTypeWrapper<TerminalPaymentFlowResponse>; | ||
TerminalPaymentFlowResponse: ResolverTypeWrapper<Omit<TerminalPaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails: ResolversTypes["PaymentMethodDetails"]; | ||
}>; | ||
OneTimePaymentFlowRequest: OneTimePaymentFlowRequest; | ||
@@ -492,3 +537,5 @@ OneTimePaymentFlowResponse: ResolverTypeWrapper<Omit<OneTimePaymentFlowResponse, "paymentMethodDetails"> & { | ||
FuturePaymentFlowRequest: FuturePaymentFlowRequest; | ||
FuturePaymentFlowResponse: ResolverTypeWrapper<FuturePaymentFlowResponse>; | ||
FuturePaymentFlowResponse: ResolverTypeWrapper<Omit<FuturePaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails?: Maybe<ResolversTypes["PaymentMethodDetails"]>; | ||
}>; | ||
ConfigPluginFlowRequest: ConfigPluginFlowRequest; | ||
@@ -501,2 +548,4 @@ ConfigPluginFlowResponse: ResolverTypeWrapper<ConfigPluginFlowResponse>; | ||
InvalidFlowResult: ResolverTypeWrapper<InvalidFlowResult>; | ||
CardType: CardType; | ||
TerminalPaySessionResultStatus: TerminalPaySessionResultStatus; | ||
ImplementationTeam: ImplementationTeam; | ||
@@ -548,5 +597,6 @@ PaymentMethod: PaymentMethod; | ||
}; | ||
ChargeDetails: ChargeDetails; | ||
TerminalPaymentFlowRequest: TerminalPaymentFlowRequest; | ||
TerminalPaymentFlowResponse: TerminalPaymentFlowResponse; | ||
TerminalPaymentFlowResponse: Omit<TerminalPaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails: ResolversParentTypes["PaymentMethodDetails"]; | ||
}; | ||
OneTimePaymentFlowRequest: OneTimePaymentFlowRequest; | ||
@@ -557,3 +607,5 @@ OneTimePaymentFlowResponse: Omit<OneTimePaymentFlowResponse, "paymentMethodDetails"> & { | ||
FuturePaymentFlowRequest: FuturePaymentFlowRequest; | ||
FuturePaymentFlowResponse: FuturePaymentFlowResponse; | ||
FuturePaymentFlowResponse: Omit<FuturePaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails?: Maybe<ResolversParentTypes["PaymentMethodDetails"]>; | ||
}; | ||
ConfigPluginFlowRequest: ConfigPluginFlowRequest; | ||
@@ -656,2 +708,3 @@ ConfigPluginFlowResponse: ConfigPluginFlowResponse; | ||
last4?: Resolver<Maybe<ResolversTypes["String"]>, ParentType, ContextType>; | ||
cardType?: Resolver<Maybe<ResolversTypes["CardType"]>, ParentType, ContextType>; | ||
isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>; | ||
@@ -745,3 +798,9 @@ }; | ||
flowType?: Resolver<ResolversTypes["PaymentProcessorFlow"], ParentType, ContextType>; | ||
paymentID?: Resolver<ResolversTypes["ID"], ParentType, ContextType>; | ||
txnReferenceId?: Resolver<ResolversTypes["String"], ParentType, ContextType>; | ||
txnApprovalStatus?: Resolver<ResolversTypes["String"], ParentType, ContextType>; | ||
txnSessionId?: Resolver<ResolversTypes["Int"], ParentType, ContextType>; | ||
txnSessionResultStatus?: Resolver<ResolversTypes["TerminalPaySessionResultStatus"], ParentType, ContextType>; | ||
txnSessionMessage?: Resolver<Maybe<ResolversTypes["String"]>, ParentType, ContextType>; | ||
serviceFeeAmount?: Resolver<Maybe<ResolversTypes["Float"]>, ParentType, ContextType>; | ||
paymentMethodDetails?: Resolver<ResolversTypes["PaymentMethodDetails"], ParentType, ContextType>; | ||
isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>; | ||
@@ -764,3 +823,5 @@ }; | ||
flowType?: Resolver<ResolversTypes["PaymentProcessorFlow"], ParentType, ContextType>; | ||
status?: Resolver<ResolversTypes["String"], ParentType, ContextType>; | ||
paymentAccountToken?: Resolver<Maybe<ResolversTypes["PaymentAccountToken"]>, ParentType, ContextType>; | ||
paymentMethodDetails?: Resolver<Maybe<ResolversTypes["PaymentMethodDetails"]>, ParentType, ContextType>; | ||
isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>; | ||
@@ -910,2 +971,3 @@ }; | ||
last4?: LoaderResolver<Maybe<Scalars["String"]>, CardDetails, {}, TContext>; | ||
cardType?: LoaderResolver<Maybe<CardType>, CardDetails, {}, TContext>; | ||
}; | ||
@@ -959,3 +1021,9 @@ ECheckDetails?: { | ||
flowType?: LoaderResolver<PaymentProcessorFlow, TerminalPaymentFlowResponse, {}, TContext>; | ||
paymentID?: LoaderResolver<Scalars["ID"], TerminalPaymentFlowResponse, {}, TContext>; | ||
txnReferenceId?: LoaderResolver<Scalars["String"], TerminalPaymentFlowResponse, {}, TContext>; | ||
txnApprovalStatus?: LoaderResolver<Scalars["String"], TerminalPaymentFlowResponse, {}, TContext>; | ||
txnSessionId?: LoaderResolver<Scalars["Int"], TerminalPaymentFlowResponse, {}, TContext>; | ||
txnSessionResultStatus?: LoaderResolver<TerminalPaySessionResultStatus, TerminalPaymentFlowResponse, {}, TContext>; | ||
txnSessionMessage?: LoaderResolver<Maybe<Scalars["String"]>, TerminalPaymentFlowResponse, {}, TContext>; | ||
serviceFeeAmount?: LoaderResolver<Maybe<Scalars["Float"]>, TerminalPaymentFlowResponse, {}, TContext>; | ||
paymentMethodDetails?: LoaderResolver<PaymentMethodDetails, TerminalPaymentFlowResponse, {}, TContext>; | ||
}; | ||
@@ -976,3 +1044,5 @@ OneTimePaymentFlowResponse?: { | ||
flowType?: LoaderResolver<PaymentProcessorFlow, FuturePaymentFlowResponse, {}, TContext>; | ||
status?: LoaderResolver<Scalars["String"], FuturePaymentFlowResponse, {}, TContext>; | ||
paymentAccountToken?: LoaderResolver<Maybe<Scalars["PaymentAccountToken"]>, FuturePaymentFlowResponse, {}, TContext>; | ||
paymentMethodDetails?: LoaderResolver<Maybe<PaymentMethodDetails>, FuturePaymentFlowResponse, {}, TContext>; | ||
}; | ||
@@ -979,0 +1049,0 @@ ConfigPluginFlowResponse?: { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.TerminalPaySessionResultStatus = exports.CardType = void 0; | ||
var CardType; | ||
(function (CardType) { | ||
CardType["UNKNOWN"] = "UNKNOWN"; | ||
CardType["AMERICAN_EXPRESS"] = "AMERICAN_EXPRESS"; | ||
CardType["DISCOVER"] = "DISCOVER"; | ||
CardType["MASTERCARD"] = "MASTERCARD"; | ||
CardType["VISA"] = "VISA"; | ||
})(CardType || (exports.CardType = CardType = {})); | ||
var TerminalPaySessionResultStatus; | ||
(function (TerminalPaySessionResultStatus) { | ||
TerminalPaySessionResultStatus["APPROVED"] = "APPROVED"; | ||
TerminalPaySessionResultStatus["DECLINED"] = "DECLINED"; | ||
TerminalPaySessionResultStatus["ERROR"] = "ERROR"; | ||
TerminalPaySessionResultStatus["IN_PROGRESS"] = "IN_PROGRESS"; | ||
TerminalPaySessionResultStatus["UNKNOWN"] = "UNKNOWN"; | ||
})(TerminalPaySessionResultStatus || (exports.TerminalPaySessionResultStatus = TerminalPaySessionResultStatus = {})); | ||
//# sourceMappingURL=generated.js.map |
{ | ||
"name": "@opengov/ppf-backend-types", | ||
"version": "1.6.1", | ||
"version": "1.6.2", | ||
"description": "PPF Backend types", | ||
@@ -26,3 +26,3 @@ "homepage": "https://github.com/OpenGov/pluggable-payments#readme", | ||
}, | ||
"gitHead": "40cdab28a5c630936f58c5af5d2fbed7440847aa" | ||
"gitHead": "f0230605e1d9c5ca26c4254bc9f30afe17d95850" | ||
} |
@@ -134,2 +134,3 @@ import type { PaymentProcessorFlow } from "./enums"; | ||
last4?: Maybe<Scalars["String"]>; | ||
cardType?: Maybe<CardType>; | ||
}; | ||
@@ -347,15 +348,27 @@ | ||
export type ChargeDetails = { | ||
label: Scalars["String"]; | ||
paymentID: Scalars["String"]; | ||
chargeAmount: Scalars["Float"]; | ||
currencyCode?: InputMaybe<Scalars["String"]>; | ||
}; | ||
export type TerminalPaymentFlowRequest = { | ||
/** Payment plug processor */ | ||
processorId: PaymentProcessorId; | ||
/** User initiating or on behalf of whom the payment is being made */ | ||
userId: Scalars["ID"]; | ||
ledgerId: Scalars["ID"]; | ||
/** Unique payent transaction reference in integrator system */ | ||
paymentID: Scalars["String"]; | ||
/** Integrator system or client system or tenant */ | ||
entityID: Scalars["String"]; | ||
/** Amount to be paid */ | ||
amount: Scalars["Float"]; | ||
/** Type of payment channel for transaction */ | ||
paymentMethod: PaymentMethod; | ||
chargeDetails: ChargeDetails; | ||
/** Identifier for terminal device */ | ||
terminalID: Scalars["String"]; | ||
/** Type of terminal device */ | ||
terminalType: Scalars["String"]; | ||
/** Options if need to mention for terminal device */ | ||
terminalOptions?: InputMaybe<Scalars["String"]>; | ||
/** Processing fee to be paid */ | ||
processingFee?: InputMaybe<Scalars["Float"]>; | ||
currency?: InputMaybe<Scalars["String"]>; | ||
sourceApp?: InputMaybe<Scalars["String"]>; | ||
description?: InputMaybe<Scalars["String"]>; | ||
applicationMetadata?: InputMaybe<ApplicationMetadata>; | ||
}; | ||
@@ -366,3 +379,9 @@ | ||
flowType: PaymentProcessorFlow; | ||
paymentID: Scalars["ID"]; | ||
txnReferenceId: Scalars["String"]; | ||
txnApprovalStatus: Scalars["String"]; | ||
txnSessionId: Scalars["Int"]; | ||
txnSessionResultStatus: TerminalPaySessionResultStatus; | ||
txnSessionMessage?: Maybe<Scalars["String"]>; | ||
serviceFeeAmount?: Maybe<Scalars["Float"]>; | ||
paymentMethodDetails: PaymentMethodDetails; | ||
}; | ||
@@ -410,3 +429,5 @@ | ||
flowType: PaymentProcessorFlow; | ||
status: Scalars["String"]; | ||
paymentAccountToken?: Maybe<Scalars["PaymentAccountToken"]>; | ||
paymentMethodDetails?: Maybe<PaymentMethodDetails>; | ||
}; | ||
@@ -457,2 +478,18 @@ | ||
export enum CardType { | ||
UNKNOWN = "UNKNOWN", | ||
AMERICAN_EXPRESS = "AMERICAN_EXPRESS", | ||
DISCOVER = "DISCOVER", | ||
MASTERCARD = "MASTERCARD", | ||
VISA = "VISA", | ||
} | ||
export enum TerminalPaySessionResultStatus { | ||
APPROVED = "APPROVED", | ||
DECLINED = "DECLINED", | ||
ERROR = "ERROR", | ||
IN_PROGRESS = "IN_PROGRESS", | ||
UNKNOWN = "UNKNOWN", | ||
} | ||
export { ImplementationTeam }; | ||
@@ -582,7 +619,11 @@ | ||
}) | ||
| TerminalPaymentFlowResponse | ||
| (Omit<TerminalPaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails: ResolversTypes["PaymentMethodDetails"]; | ||
}) | ||
| (Omit<OneTimePaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails: ResolversTypes["PaymentMethodDetails"]; | ||
}) | ||
| FuturePaymentFlowResponse | ||
| (Omit<FuturePaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails?: Maybe<ResolversTypes["PaymentMethodDetails"]>; | ||
}) | ||
| ConfigPluginFlowResponse | ||
@@ -606,7 +647,13 @@ | InvalidSignature | ||
}) | ||
| TerminalPaymentFlowResponse | ||
| (Omit<TerminalPaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails: ResolversParentTypes["PaymentMethodDetails"]; | ||
}) | ||
| (Omit<OneTimePaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails: ResolversParentTypes["PaymentMethodDetails"]; | ||
}) | ||
| FuturePaymentFlowResponse | ||
| (Omit<FuturePaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails?: Maybe< | ||
ResolversParentTypes["PaymentMethodDetails"] | ||
>; | ||
}) | ||
| ConfigPluginFlowResponse | ||
@@ -675,5 +722,8 @@ | InvalidSignature | ||
>; | ||
ChargeDetails: ChargeDetails; | ||
TerminalPaymentFlowRequest: TerminalPaymentFlowRequest; | ||
TerminalPaymentFlowResponse: ResolverTypeWrapper<TerminalPaymentFlowResponse>; | ||
TerminalPaymentFlowResponse: ResolverTypeWrapper< | ||
Omit<TerminalPaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails: ResolversTypes["PaymentMethodDetails"]; | ||
} | ||
>; | ||
OneTimePaymentFlowRequest: OneTimePaymentFlowRequest; | ||
@@ -686,3 +736,7 @@ OneTimePaymentFlowResponse: ResolverTypeWrapper< | ||
FuturePaymentFlowRequest: FuturePaymentFlowRequest; | ||
FuturePaymentFlowResponse: ResolverTypeWrapper<FuturePaymentFlowResponse>; | ||
FuturePaymentFlowResponse: ResolverTypeWrapper< | ||
Omit<FuturePaymentFlowResponse, "paymentMethodDetails"> & { | ||
paymentMethodDetails?: Maybe<ResolversTypes["PaymentMethodDetails"]>; | ||
} | ||
>; | ||
ConfigPluginFlowRequest: ConfigPluginFlowRequest; | ||
@@ -695,2 +749,4 @@ ConfigPluginFlowResponse: ResolverTypeWrapper<ConfigPluginFlowResponse>; | ||
InvalidFlowResult: ResolverTypeWrapper<InvalidFlowResult>; | ||
CardType: CardType; | ||
TerminalPaySessionResultStatus: TerminalPaySessionResultStatus; | ||
ImplementationTeam: ImplementationTeam; | ||
@@ -759,5 +815,7 @@ PaymentMethod: PaymentMethod; | ||
> & { paymentMethodDetails: ResolversParentTypes["PaymentMethodDetails"] }; | ||
ChargeDetails: ChargeDetails; | ||
TerminalPaymentFlowRequest: TerminalPaymentFlowRequest; | ||
TerminalPaymentFlowResponse: TerminalPaymentFlowResponse; | ||
TerminalPaymentFlowResponse: Omit< | ||
TerminalPaymentFlowResponse, | ||
"paymentMethodDetails" | ||
> & { paymentMethodDetails: ResolversParentTypes["PaymentMethodDetails"] }; | ||
OneTimePaymentFlowRequest: OneTimePaymentFlowRequest; | ||
@@ -769,3 +827,8 @@ OneTimePaymentFlowResponse: Omit< | ||
FuturePaymentFlowRequest: FuturePaymentFlowRequest; | ||
FuturePaymentFlowResponse: FuturePaymentFlowResponse; | ||
FuturePaymentFlowResponse: Omit< | ||
FuturePaymentFlowResponse, | ||
"paymentMethodDetails" | ||
> & { | ||
paymentMethodDetails?: Maybe<ResolversParentTypes["PaymentMethodDetails"]>; | ||
}; | ||
ConfigPluginFlowRequest: ConfigPluginFlowRequest; | ||
@@ -997,2 +1060,7 @@ ConfigPluginFlowResponse: ConfigPluginFlowResponse; | ||
last4?: Resolver<Maybe<ResolversTypes["String"]>, ParentType, ContextType>; | ||
cardType?: Resolver< | ||
Maybe<ResolversTypes["CardType"]>, | ||
ParentType, | ||
ContextType | ||
>; | ||
isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>; | ||
@@ -1275,3 +1343,29 @@ }; | ||
>; | ||
paymentID?: Resolver<ResolversTypes["ID"], ParentType, ContextType>; | ||
txnReferenceId?: Resolver<ResolversTypes["String"], ParentType, ContextType>; | ||
txnApprovalStatus?: Resolver< | ||
ResolversTypes["String"], | ||
ParentType, | ||
ContextType | ||
>; | ||
txnSessionId?: Resolver<ResolversTypes["Int"], ParentType, ContextType>; | ||
txnSessionResultStatus?: Resolver< | ||
ResolversTypes["TerminalPaySessionResultStatus"], | ||
ParentType, | ||
ContextType | ||
>; | ||
txnSessionMessage?: Resolver< | ||
Maybe<ResolversTypes["String"]>, | ||
ParentType, | ||
ContextType | ||
>; | ||
serviceFeeAmount?: Resolver< | ||
Maybe<ResolversTypes["Float"]>, | ||
ParentType, | ||
ContextType | ||
>; | ||
paymentMethodDetails?: Resolver< | ||
ResolversTypes["PaymentMethodDetails"], | ||
ParentType, | ||
ContextType | ||
>; | ||
isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>; | ||
@@ -1330,2 +1424,3 @@ }; | ||
>; | ||
status?: Resolver<ResolversTypes["String"], ParentType, ContextType>; | ||
paymentAccountToken?: Resolver< | ||
@@ -1336,2 +1431,7 @@ Maybe<ResolversTypes["PaymentAccountToken"]>, | ||
>; | ||
paymentMethodDetails?: Resolver< | ||
Maybe<ResolversTypes["PaymentMethodDetails"]>, | ||
ParentType, | ||
ContextType | ||
>; | ||
isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>; | ||
@@ -1626,2 +1726,3 @@ }; | ||
last4?: LoaderResolver<Maybe<Scalars["String"]>, CardDetails, {}, TContext>; | ||
cardType?: LoaderResolver<Maybe<CardType>, CardDetails, {}, TContext>; | ||
}; | ||
@@ -1852,4 +1953,4 @@ | ||
>; | ||
paymentID?: LoaderResolver< | ||
Scalars["ID"], | ||
txnReferenceId?: LoaderResolver< | ||
Scalars["String"], | ||
TerminalPaymentFlowResponse, | ||
@@ -1859,2 +1960,38 @@ {}, | ||
>; | ||
txnApprovalStatus?: LoaderResolver< | ||
Scalars["String"], | ||
TerminalPaymentFlowResponse, | ||
{}, | ||
TContext | ||
>; | ||
txnSessionId?: LoaderResolver< | ||
Scalars["Int"], | ||
TerminalPaymentFlowResponse, | ||
{}, | ||
TContext | ||
>; | ||
txnSessionResultStatus?: LoaderResolver< | ||
TerminalPaySessionResultStatus, | ||
TerminalPaymentFlowResponse, | ||
{}, | ||
TContext | ||
>; | ||
txnSessionMessage?: LoaderResolver< | ||
Maybe<Scalars["String"]>, | ||
TerminalPaymentFlowResponse, | ||
{}, | ||
TContext | ||
>; | ||
serviceFeeAmount?: LoaderResolver< | ||
Maybe<Scalars["Float"]>, | ||
TerminalPaymentFlowResponse, | ||
{}, | ||
TContext | ||
>; | ||
paymentMethodDetails?: LoaderResolver< | ||
PaymentMethodDetails, | ||
TerminalPaymentFlowResponse, | ||
{}, | ||
TContext | ||
>; | ||
}; | ||
@@ -1932,2 +2069,8 @@ | ||
>; | ||
status?: LoaderResolver< | ||
Scalars["String"], | ||
FuturePaymentFlowResponse, | ||
{}, | ||
TContext | ||
>; | ||
paymentAccountToken?: LoaderResolver< | ||
@@ -1939,2 +2082,8 @@ Maybe<Scalars["PaymentAccountToken"]>, | ||
>; | ||
paymentMethodDetails?: LoaderResolver< | ||
Maybe<PaymentMethodDetails>, | ||
FuturePaymentFlowResponse, | ||
{}, | ||
TContext | ||
>; | ||
}; | ||
@@ -1941,0 +2090,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
311456
3204