Skip to content

Commit

Permalink
Remove balance scalar spec
Browse files Browse the repository at this point in the history
  • Loading branch information
cahyofireblocks authored Dec 16, 2024
1 parent a0a4482 commit c2c2d9e
Showing 1 changed file with 41 additions and 5 deletions.
46 changes: 41 additions & 5 deletions api-spec-scalar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5252,7 +5252,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/UnmanagedWallet'
$ref: '#/components/schemas/UnmanagedWalletExternal'
default:
$ref: '#/components/responses/Error'
requestBody:
Expand Down Expand Up @@ -5322,7 +5322,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/UnmanagedWallet'
$ref: '#/components/schemas/UnmanagedWalletExternal'
default:
$ref: '#/components/responses/Error'
operationId: getExternalWallet
Expand Down Expand Up @@ -5520,7 +5520,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/ExternalWalletAsset'
$ref: '#/components/schemas/ExternalWalletAssetDetail'
default:
$ref: '#/components/responses/Error'
operationId: getExternalWalletAsset
Expand Down Expand Up @@ -5593,7 +5593,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/ExternalWalletAsset'
$ref: '#/components/schemas/ExternalWalletAssetDetail'
default:
$ref: '#/components/responses/Error'
requestBody:
Expand Down Expand Up @@ -17283,6 +17283,23 @@ components:
- id
- name
- assets
UnmanagedWalletExternal:
type: object
properties:
id:
type: string
name:
type: string
customerRefId:
type: string
assets:
type: array
items:
$ref: '#/components/schemas/WalletAssetExternal'
required:
- id
- name
- assets
GetInternalWalletsResponse:
type: array
items:
Expand Down Expand Up @@ -17538,7 +17555,7 @@ components:
GetExternalWalletsResponse:
type: array
items:
$ref: '#/components/schemas/UnmanagedWallet'
$ref: '#/components/schemas/UnmanagedWalletExternal'
WalletAssetAdditionalInfo:
type: object
properties:
Expand Down Expand Up @@ -17595,6 +17612,25 @@ components:
type: array
items:
$ref: '#/components/schemas/WalletAssetAdditionalInfo'
ExternalWalletAssetDetail:
type: object
properties:
id:
type: string
status:
$ref: '#/components/schemas/ConfigChangeRequestStatus'
address:
type: string
lockedAmount:
type: string
tag:
type: string
activationTime:
type: string
additionalInfo:
type: array
items:
$ref: '#/components/schemas/WalletAssetAdditionalInfo'
AddAssetToExternalWalletRequest:
oneOf:
- type: object
Expand Down

0 comments on commit c2c2d9e

Please sign in to comment.