@opexa/portal-sdk 0.54.7 → 0.54.8

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 CHANGED
@@ -494,8 +494,14 @@ var CREATE_GCASH_STANDARD_CASHIN_WITHDRAWAL_MUTATION = gql`
494
494
  }
495
495
  `;
496
496
  var CREATE_MAYA_WITHDRAWAL_MUTATION = gql`
497
- mutation CreateMayaWithdrawal($input: CreateMayaWithdrawalInput!) {
498
- createMayaWithdrawal(input: $input) {
497
+ mutation CreateMayaWithdrawal(
498
+ $input: CreateMayaWithdrawalInput!
499
+ $transactionPassword: String!
500
+ ) {
501
+ createMayaWithdrawal(
502
+ input: $input
503
+ transactionPassword: $transactionPassword
504
+ ) {
499
505
  ... on AccountNotVerifiedError {
500
506
  __typename
501
507
  }
@@ -9060,12 +9066,12 @@ var Sdk = class {
9060
9066
  input: {
9061
9067
  id,
9062
9068
  amount: input.amount.toString(),
9063
- transactionPassword: await sha256(input.transactionPassword),
9064
- recipientMobileNumber: addAreaCode(
9065
- input.recipientMobileNumber,
9069
+ accountNumber: addAreaCode(
9070
+ input.accountNumber,
9066
9071
  await this.locale
9067
9072
  )
9068
9073
  },
9074
+ transactionPassword: await sha256(input.transactionPassword),
9069
9075
  reCAPTCHAResponse: input.reCAPTCHAResponse,
9070
9076
  ...this.webDomain && {
9071
9077
  domain: this.webDomain