Skip to content

Commit 8cfde26

Browse files
fix: sync SDK to OpenAPI doc v2.6.2 (#98)
1 parent dffcd34 commit 8cfde26

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

OPENAPI_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6.1
1+
2.6.2

sdk.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
}
77
],
88
"info": {
9-
"version": "2.6.1",
9+
"version": "2.6.2",
1010
"title": "All Circle APIs",
1111
"description": "Circle's General, Core Functionality, Payments, Payouts, Accounts, and Crypto Payments APIs bundled into one OpenAPI Specification."
1212
},
@@ -8777,6 +8777,9 @@
87778777
"description": "The blockchain address.",
87788778
"example": "0x8381470ED67C3802402dbbFa0058E8871F017A6F"
87798779
},
8780+
"addressTag": {
8781+
"$ref": "#/components/schemas/AddressTag"
8782+
},
87808783
"chain": {
87818784
"$ref": "#/components/schemas/Chain"
87828785
}

src/generated/models/crypto-refund-destination.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ export interface CryptoRefundDestination {
2222
* @memberof CryptoRefundDestination
2323
*/
2424
address: string;
25+
/**
26+
* The secondary identifier for a blockchain address. An example of this is the memo field on the Stellar network, which can be text, id, or hash format.
27+
* @type {string}
28+
* @memberof CryptoRefundDestination
29+
*/
30+
addressTag?: string | null;
2531
/**
2632
*
2733
* @type {Chain}

0 commit comments

Comments
 (0)