@mirahi/vendure-adyen-dropin-plugin
Version:
A Vendure plugin to integrate the Adyen payment provider to your server. This plugin only handles the flow for a drop-in integration on your storefront.
21 lines (18 loc) • 541 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.schema = void 0;
const graphql_tag_1 = require("graphql-tag");
exports.schema = graphql_tag_1.gql `
type AdyenPaymentIntent {
sessionData: String
transactionId: String
}
type AdyenPaymentIntentError {
message: String!
}
union AdyenPaymentIntentResult = AdyenPaymentIntent | AdyenPaymentIntentError
extend type Mutation {
createAdyenPaymentIntent: AdyenPaymentIntentResult!
}
`;
//# sourceMappingURL=adyen-shop-schema.js.map