Open ozkcs opened 2 years ago
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
}
}
}
}
}
}
}
`;
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 :)
Opa tudo bom? É possivel você implementar esse metodo na sua lib? https://github.com/andreroggeri/pynubank/blob/25b0897fdd2bd68197114f01b27fe195e5fbe46a/pynubank/nubank.py#L277 agradeço desde já