Skip to content

Commit

Permalink
release 2.1.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ninrod committed Oct 20, 2020
1 parent f5882a6 commit 49b1f4f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 23 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

Mudanças relevantes na API Pix serão documentadas aqui.

## [2.1.0-rc.2]

### Correções

- corrigido array _required_ de CobSolicitada [#100](https://github.com/bacen/pix-api/issues/100)

## [2.1.0-rc.1]

### Correções
Expand Down
40 changes: 17 additions & 23 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,7 @@ paths:
- name: "locationPresente"
in: "query"
schema:
type: "string"
format: "boolean"
type: "boolean"
- name: "status"
in: "query"
schema:
Expand Down Expand Up @@ -240,8 +239,7 @@ paths:
- name: "txIdPresente"
in: "query"
schema:
type: "string"
format: "boolean"
type: "boolean"
- $ref: "#/components/parameters/paginaAtual"
- $ref: "#/components/parameters/itensPorPagina"
tags:
Expand Down Expand Up @@ -354,8 +352,7 @@ paths:
- name: "txIdPresente"
in: "query"
schema:
type: "string"
format: "boolean"
type: "boolean"
- name: "cpf"
in: "query"
schema:
Expand Down Expand Up @@ -882,9 +879,10 @@ components:
inicio: "2020-04-01T00:00:00Z"
fim: "2020-04-01T23:59:59Z"
paginacao:
pagina: 0
tamanho: 100
quantidade: 3
paginaAtual: 0
itensPorPagina: 100
quantidadeDePaginas: 1
quantidadeTotalDeItens: 3
loc:
- allOf:
- $ref: '#/components/examples/payloadLocationResponse1/value'
Expand Down Expand Up @@ -1257,7 +1255,7 @@ components:
type: "object"
title: "Cobrança Solicitada"
description: "Dados enviados para criação ou alteração da cobrança via API Pix"
required: ["valor", "chave", "calendario", "expiracao", "dataDeVencimento"]
required: ["valor", "chave", "calendario"]
allOf:
- type: "object"
properties:
Expand Down Expand Up @@ -1297,8 +1295,8 @@ components:
type: "string"
title: "Status da Cobrança"
enum:
- "REMOVIDO_PELO_USUARIO_RECEBEDOR"
- $ref: "#/components/schemas/CobBase"
- "REMOVIDO_PELO_USUARIO_RECEBEDOR"
- $ref: "#/components/schemas/CobBase"
CobGerada:
type: "object"
title: "Cobrança Gerada"
Expand Down Expand Up @@ -1338,12 +1336,11 @@ components:
- $ref: "#/components/schemas/CobBase"
CobCompleta:
title: "Cobrança Completa"
required: ["status"]
allOf:
- $ref: "#/components/schemas/CobGerada"
- $ref: "#/components/schemas/CobSolicitada"
- type: "object"
title: "Cob"
required: ["status"]
properties:
pix:
type: "array"
Expand All @@ -1358,8 +1355,8 @@ components:
enum:
- "ATIVA"
- "CONCLUIDA"
- "REMOVIDO_PELO_USUARIO_RECEBEDOR"
- "REMOVIDO_PELO_PSP"
- "REMOVIDO_PELO_USUARIO_RECEBEDOR"
- "REMOVIDO_PELO_PSP"
CobPayload:
type: "object"
title: "Payload JSON da cobrança"
Expand Down Expand Up @@ -1453,8 +1450,7 @@ components:
pattern: "/^\\d{14}$/"
description: "Filtro pelo CNPJ do devedor. Não pode ser utilizado ao mesmo tempo que o CPF."
locationPresente:
type: "string"
format: "boolean"
type: "boolean"
description: "Filtro pela existência de location vinculada."
status:
type: "string"
Expand Down Expand Up @@ -1574,8 +1570,7 @@ components:
description: "Data de fim utilizada na consulta. Respeita RFC 3339."
example: "2020-04-01T17:00:00Z"
txIdPresente:
type: "string"
format: "boolean"
type: "boolean"
description: "Filtro pela existência de txid."
paginacao:
$ref: "#/components/schemas/Paginacao"
Expand All @@ -1595,7 +1590,7 @@ components:
ParametrosConsultaPix:
type: "object"
title: "Parâmetros de Consulta Pix"
description: "Parâmetros utilizados para a realização de uma consulta de cobranças."
description: "Parâmetros utilizados para a realização de uma consulta de Pix."
required: ["inicio", "fim", "paginacao"]
properties:
inicio:
Expand All @@ -1613,8 +1608,7 @@ components:
txid:
$ref: "#/components/schemas/TxId"
txIdPresente:
type: "string"
format: "boolean"
type: "boolean"
description: "Filtro pela existência de txid."
paginacao:
$ref: "#/components/schemas/Paginacao"
Expand Down

0 comments on commit 49b1f4f

Please sign in to comment.