Git Product home page Git Product logo

Comments (2)

ozkcs avatar ozkcs commented on September 24, 2024

O que eu tentei fazer foi:

public async get_pix_identifier(
    txId: any
  ): Promise<PixPaymentRequest> {
    const getPixInfo = {
      type: "TRANSFER_IN",
      id: txId
    };

    const { data: get_pix_info } = await this._context.http.graphql(
      GqlOperations.MUTATION_GET_PIX_TXID,
      getPixInfo 
    );
    console.log(get_pix_info) // Retorno: { viewer: { savingsAccount: null } }
    return get_pix_info?.viewer?.savingsAccount?.getGenericReceiptScreen?.screenPieces;
  }

e criar a o query ( igual ao do pynubank):

export const MUTATION_GET_PIX_TXID: string = `
query get_generic_receipt_screen($type: String!, $id: ID!) {
  viewer {
    savingsAccount {
      getGenericReceiptScreen(type: $type, id: $id) {
        screenShowShareAction
        screenType
        screenPieces {
          __typename
          fallbackMessage
          ... on ReceiptHeaderPiece {
            headerTitle
            headerSubtitle
          }
          ... on ReceiptMessagePiece {
            messageTitle
            messageContent
          }
          ... on ReceiptFooterPiece {
            footerTitle
            footerContent
          }
          ... on ReceiptTablePiece {
            tableHeader {
              icon
              title
              subtitle
              deeplinkWithMeta {
                href
                analytics {
                  key
                  value
                }
              }
            }
            tableItems {
              label
              value
            }
          }
        }
      }
    }
  }
}
`;

from nubank-api.

fmsouza avatar fmsouza commented on September 24, 2024

Oi @ozkcs!

Obrigado pelo aviso de que existe essa funcionalidade nova pra ser implementada. Eu ando meio inativo nesse projeto, com algumas outras prioridades. Por isso posso levar um tempo para implementar. Mas se você preferir, você pode Baixar o código do projeto na sua máquina, implementar (seguindo os padrões do código) e depois mandar um Pull Request que eu vou ficar feliz em revisar :)

from nubank-api.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.