Skip to content

Commit

Permalink
Update OpenAPI docs to v1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
circle-github-action-bot committed Mar 21, 2023
1 parent 772fe06 commit 1631819
Show file tree
Hide file tree
Showing 14 changed files with 188 additions and 185 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.7.2](https://github.com/circlefin/openapi-internal/compare/v1.7.1...v1.7.2) (2023-03-21)


### Fixes

* payment intents endpoints schemas

## [1.7.1](https://github.com/circlefin/openapi-internal/compare/v1.7.0...v1.7.1) (2023-03-07)


Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.1
1.7.2
2 changes: 1 addition & 1 deletion openapi/json/account.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
],
"info": {
"version": "1.7.1",
"version": "1.7.2",
"title": "Core Functionality",
"description": "All of Circle's APIs share a common set of core functionality that lets you manage your Circle Account in a programmatic way.\n\nWith a Circle Account your business can deposit traditional money from 80+ countries and seamlessly convert them into \"digital currency dollars\": USDC. You can then use USDC for everyday payments and treasury flows.\n"
},
Expand Down
2 changes: 1 addition & 1 deletion openapi/json/accounts.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
],
"info": {
"version": "1.7.1",
"version": "1.7.2",
"title": "Accounts API",
"description": "The Accounts API allows you to easily create and host digital wallets for your customers, and manage transfers of funds across accounts- whether they are within the Circle platform, or in / out of the platform via on-chain USDC, EUROC, BTC, and ETH connectivity."
},
Expand Down
150 changes: 75 additions & 75 deletions openapi/json/circle-apis.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
],
"info": {
"version": "1.7.1",
"version": "1.7.2",
"title": "All Circle APIs",
"description": "Circle's General, Core Functionality, Payments, Payouts, Accounts, and Crypto Payments APIs bundled into one OpenAPI Specification."
},
Expand Down Expand Up @@ -3103,61 +3103,65 @@
"examples": {
"Transient Payment Intent": {
"value": {
"data": {
"id": "8755d0ea-14f9-4259-b092-de23c14b6568",
"amount": {
"amount": "3.14",
"currency": "USD"
},
"amountPaid": {
"amount": "0.00",
"currency": "USD"
},
"settlementCurrency": "USD",
"paymentMethods": [
{
"type": "blockchain",
"chain": "ETH"
}
],
"paymentIds": [],
"timeline": [
{
"status": "created",
"time": "2022-07-21T20:13:35.579331Z"
}
],
"createDate": "2022-07-21T20:13:35.578678Z",
"updateDate": "2022-07-21T20:19:24.859052Z"
}
"data": [
{
"id": "8755d0ea-14f9-4259-b092-de23c14b6568",
"amount": {
"amount": "3.14",
"currency": "USD"
},
"amountPaid": {
"amount": "0.00",
"currency": "USD"
},
"settlementCurrency": "USD",
"paymentMethods": [
{
"type": "blockchain",
"chain": "ETH"
}
],
"paymentIds": [],
"timeline": [
{
"status": "created",
"time": "2022-07-21T20:13:35.579331Z"
}
],
"createDate": "2022-07-21T20:13:35.578678Z",
"updateDate": "2022-07-21T20:19:24.859052Z"
}
]
}
},
"Continuous Payment Intent": {
"value": {
"data": {
"id": "e2e90ba3-9d1f-490d-9460-24ac6eb55a1b",
"currency": "USD",
"settlementCurrency": "USD",
"amountPaid": {
"amount": "0.00",
"currency": "USD"
},
"paymentMethods": [
{
"type": "blockchain",
"chain": "ETH"
}
],
"timeline": [
{
"status": "created",
"time": "2023-01-21T20:13:35.579331Z"
}
],
"type": "continuous",
"createDate": "2023-01-21T20:13:35.578678Z",
"updateDate": "2023-01-21T20:13:35.578678Z"
}
"data": [
{
"id": "e2e90ba3-9d1f-490d-9460-24ac6eb55a1b",
"currency": "USD",
"settlementCurrency": "USD",
"amountPaid": {
"amount": "0.00",
"currency": "USD"
},
"paymentMethods": [
{
"type": "blockchain",
"chain": "ETH"
}
],
"timeline": [
{
"status": "created",
"time": "2023-01-21T20:13:35.579331Z"
}
],
"type": "continuous",
"createDate": "2023-01-21T20:13:35.578678Z",
"updateDate": "2023-01-21T20:13:35.578678Z"
}
]
}
}
}
Expand Down Expand Up @@ -3201,17 +3205,14 @@
"title": "GetPaymentIntentResponse",
"properties": {
"data": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/components/schemas/PaymentIntent"
},
{
"$ref": "#/components/schemas/ContinuousPaymentIntent"
}
]
}
"anyOf": [
{
"$ref": "#/components/schemas/PaymentIntent"
},
{
"$ref": "#/components/schemas/ContinuousPaymentIntent"
}
]
}
}
},
Expand Down Expand Up @@ -3328,17 +3329,14 @@
"title": "ExpirePaymentIntentResponse",
"properties": {
"data": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/components/schemas/PaymentIntent"
},
{
"$ref": "#/components/schemas/ContinuousPaymentIntent"
}
]
}
"anyOf": [
{
"$ref": "#/components/schemas/PaymentIntent"
},
{
"$ref": "#/components/schemas/ContinuousPaymentIntent"
}
]
}
}
},
Expand Down Expand Up @@ -10757,7 +10755,9 @@
"description": "Currency code.",
"type": "string",
"enum": [
"USD"
"USD",
"BTC",
"ETH"
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion openapi/json/general.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
],
"info": {
"version": "1.7.1",
"version": "1.7.2",
"title": "API Overview",
"description": "Common endpoints shared across all Circle APIs."
},
Expand Down
Loading

0 comments on commit 1631819

Please sign in to comment.