@visa-check-r/integrations 0.0.69 → 0.0.71

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.
package/dist/index.cjs.js CHANGED
@@ -2810,8 +2810,8 @@ async function encryptAES(data, token, nonce) {
2810
2810
  // src/services/subscription/schemas/paystack.ts
2811
2811
  var paystackSchema = {
2812
2812
  paystackInitializePayment: (query) => `
2813
- mutation paystackInitializePayment($userId: String!) {
2814
- paystackInitializePayment(userId: $userId) {
2813
+ mutation paystackInitializePayment($userId: String! $planId: String! $amount: Float!) {
2814
+ paystackInitializePayment(userId: $userId, planId: $planId, amount: $amount) {
2815
2815
  ${query}
2816
2816
  }
2817
2817
  }