UNPKG

@wepublish/api

Version:
26 lines (25 loc) 963 B
import { GraphQLObjectType, GraphQLInputObjectType } from 'graphql'; import { Context } from '../context'; import { PaymentProvider } from "../../../payment-api/src"; export declare const GraphQLPaymentProvider: GraphQLObjectType<PaymentProvider, Context>; export declare const GraphQLPaymentMethod: GraphQLObjectType<import("@prisma/client/runtime/library").GetResult<{ id: string; createdAt: Date; modifiedAt: Date; name: string; slug: string; description: string; paymentProviderID: string; active: boolean; }, unknown> & {}, Context>; export declare const GraphQLPublicPaymentMethod: GraphQLObjectType<import("@prisma/client/runtime/library").GetResult<{ id: string; createdAt: Date; modifiedAt: Date; name: string; slug: string; description: string; paymentProviderID: string; active: boolean; }, unknown> & {}, Context>; export declare const GraphQLPaymentMethodInput: GraphQLInputObjectType;