Skip to content

Commit 7c52e30

Browse files
VojtechVitektaylanpince
authored andcommitted
[AUTOMATED] Update: api/proto/docs/api.gen.yaml
1 parent d3c5170 commit 7c52e30

File tree

1 file changed

+186
-1
lines changed

1 file changed

+186
-1
lines changed

docs/pages/api/api/api.gen.yaml

Lines changed: 186 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# sequence-api v0.4.0 0b8efdfc0a7213cdf649c64bd3a31cde14b94342
1+
# sequence-api v0.4.0 ff5dfa4f3b3ff9dfca0dff670949b5ed898307f6
22
# --
33
# Code generated by [email protected] with openapi generator; DO NOT EDIT
44
#
@@ -1925,6 +1925,37 @@ components:
19251925
type: string
19261926
deletedAt:
19271927
type: string
1928+
CCTPTransfer:
1929+
type: object
1930+
required:
1931+
- id
1932+
- sourceTxHash
1933+
- sourceChainId
1934+
- destinationChainId
1935+
- message
1936+
- attestation
1937+
- status
1938+
- createdAt
1939+
- updatedAt
1940+
properties:
1941+
id:
1942+
type: string
1943+
sourceTxHash:
1944+
type: string
1945+
sourceChainId:
1946+
type: number
1947+
destinationChainId:
1948+
type: number
1949+
message:
1950+
type: string
1951+
attestation:
1952+
type: string
1953+
status:
1954+
type: string
1955+
createdAt:
1956+
type: string
1957+
updatedAt:
1958+
type: string
19281959
OffchainPayment:
19291960
type: object
19301961
required:
@@ -2825,6 +2856,22 @@ components:
28252856
properties:
28262857
params:
28272858
$ref: '#/components/schemas/GetLifiSwapQuoteParams'
2859+
API_GetCCTPTransfer_Request:
2860+
type: object
2861+
properties:
2862+
id:
2863+
type: string
2864+
API_QueueCCTPTransfer_Request:
2865+
type: object
2866+
properties:
2867+
sourceTxHash:
2868+
type: string
2869+
metaTxHash:
2870+
type: string
2871+
sourceChainId:
2872+
type: number
2873+
destinationChainId:
2874+
type: number
28282875
API_IsValidSignature_Response:
28292876
type: object
28302877
properties:
@@ -2892,6 +2939,16 @@ components:
28922939
properties:
28932940
quote:
28942941
$ref: '#/components/schemas/LifiSwapQuote'
2942+
API_GetCCTPTransfer_Response:
2943+
type: object
2944+
properties:
2945+
transfer:
2946+
$ref: '#/components/schemas/CCTPTransfer'
2947+
API_QueueCCTPTransfer_Response:
2948+
type: object
2949+
properties:
2950+
transfer:
2951+
$ref: '#/components/schemas/CCTPTransfer'
28952952
paths:
28962953
/rpc/API/IsValidSignature:
28972954
post:
@@ -3592,3 +3649,131 @@ paths:
35923649
- $ref: '#/components/schemas/ErrorWebrpcBadResponse'
35933650
- $ref: '#/components/schemas/ErrorWebrpcServerPanic'
35943651
- $ref: '#/components/schemas/ErrorWebrpcInternalError'
3652+
/rpc/API/GetCCTPTransfer:
3653+
post:
3654+
tags: ["API"]
3655+
summary: ""
3656+
description: |
3657+
CCTP
3658+
requestBody:
3659+
content:
3660+
application/json:
3661+
schema:
3662+
$ref: '#/components/schemas/API_GetCCTPTransfer_Request'
3663+
responses:
3664+
'200':
3665+
description: OK
3666+
content:
3667+
application/json:
3668+
schema:
3669+
$ref: '#/components/schemas/API_GetCCTPTransfer_Response'
3670+
'4XX':
3671+
description: Client error
3672+
content:
3673+
application/json:
3674+
schema:
3675+
oneOf:
3676+
- $ref: '#/components/schemas/ErrorWebrpcEndpoint'
3677+
- $ref: '#/components/schemas/ErrorWebrpcRequestFailed'
3678+
- $ref: '#/components/schemas/ErrorWebrpcBadRoute'
3679+
- $ref: '#/components/schemas/ErrorWebrpcBadMethod'
3680+
- $ref: '#/components/schemas/ErrorWebrpcBadRequest'
3681+
- $ref: '#/components/schemas/ErrorWebrpcClientDisconnected'
3682+
- $ref: '#/components/schemas/ErrorWebrpcStreamLost'
3683+
- $ref: '#/components/schemas/ErrorUnauthorized'
3684+
- $ref: '#/components/schemas/ErrorPermissionDenied'
3685+
- $ref: '#/components/schemas/ErrorSessionExpired'
3686+
- $ref: '#/components/schemas/ErrorMethodNotFound'
3687+
- $ref: '#/components/schemas/ErrorRequestConflict'
3688+
- $ref: '#/components/schemas/ErrorAborted'
3689+
- $ref: '#/components/schemas/ErrorGeoblocked'
3690+
- $ref: '#/components/schemas/ErrorRateLimited'
3691+
- $ref: '#/components/schemas/ErrorProjectNotFound'
3692+
- $ref: '#/components/schemas/ErrorAccessKeyNotFound'
3693+
- $ref: '#/components/schemas/ErrorAccessKeyMismatch'
3694+
- $ref: '#/components/schemas/ErrorInvalidOrigin'
3695+
- $ref: '#/components/schemas/ErrorInvalidService'
3696+
- $ref: '#/components/schemas/ErrorUnauthorizedUser'
3697+
- $ref: '#/components/schemas/ErrorQuotaExceeded'
3698+
- $ref: '#/components/schemas/ErrorQuotaRateLimit'
3699+
- $ref: '#/components/schemas/ErrorNoDefaultKey'
3700+
- $ref: '#/components/schemas/ErrorMaxAccessKeys'
3701+
- $ref: '#/components/schemas/ErrorAtLeastOneKey'
3702+
- $ref: '#/components/schemas/ErrorTimeout'
3703+
- $ref: '#/components/schemas/ErrorInvalidArgument'
3704+
- $ref: '#/components/schemas/ErrorUnavailable'
3705+
- $ref: '#/components/schemas/ErrorQueryFailed'
3706+
- $ref: '#/components/schemas/ErrorNotFound'
3707+
- $ref: '#/components/schemas/ErrorUnsupportedNetwork'
3708+
'5XX':
3709+
description: Server error
3710+
content:
3711+
application/json:
3712+
schema:
3713+
oneOf:
3714+
- $ref: '#/components/schemas/ErrorWebrpcBadResponse'
3715+
- $ref: '#/components/schemas/ErrorWebrpcServerPanic'
3716+
- $ref: '#/components/schemas/ErrorWebrpcInternalError'
3717+
/rpc/API/QueueCCTPTransfer:
3718+
post:
3719+
tags: ["API"]
3720+
summary: ""
3721+
requestBody:
3722+
content:
3723+
application/json:
3724+
schema:
3725+
$ref: '#/components/schemas/API_QueueCCTPTransfer_Request'
3726+
responses:
3727+
'200':
3728+
description: OK
3729+
content:
3730+
application/json:
3731+
schema:
3732+
$ref: '#/components/schemas/API_QueueCCTPTransfer_Response'
3733+
'4XX':
3734+
description: Client error
3735+
content:
3736+
application/json:
3737+
schema:
3738+
oneOf:
3739+
- $ref: '#/components/schemas/ErrorWebrpcEndpoint'
3740+
- $ref: '#/components/schemas/ErrorWebrpcRequestFailed'
3741+
- $ref: '#/components/schemas/ErrorWebrpcBadRoute'
3742+
- $ref: '#/components/schemas/ErrorWebrpcBadMethod'
3743+
- $ref: '#/components/schemas/ErrorWebrpcBadRequest'
3744+
- $ref: '#/components/schemas/ErrorWebrpcClientDisconnected'
3745+
- $ref: '#/components/schemas/ErrorWebrpcStreamLost'
3746+
- $ref: '#/components/schemas/ErrorUnauthorized'
3747+
- $ref: '#/components/schemas/ErrorPermissionDenied'
3748+
- $ref: '#/components/schemas/ErrorSessionExpired'
3749+
- $ref: '#/components/schemas/ErrorMethodNotFound'
3750+
- $ref: '#/components/schemas/ErrorRequestConflict'
3751+
- $ref: '#/components/schemas/ErrorAborted'
3752+
- $ref: '#/components/schemas/ErrorGeoblocked'
3753+
- $ref: '#/components/schemas/ErrorRateLimited'
3754+
- $ref: '#/components/schemas/ErrorProjectNotFound'
3755+
- $ref: '#/components/schemas/ErrorAccessKeyNotFound'
3756+
- $ref: '#/components/schemas/ErrorAccessKeyMismatch'
3757+
- $ref: '#/components/schemas/ErrorInvalidOrigin'
3758+
- $ref: '#/components/schemas/ErrorInvalidService'
3759+
- $ref: '#/components/schemas/ErrorUnauthorizedUser'
3760+
- $ref: '#/components/schemas/ErrorQuotaExceeded'
3761+
- $ref: '#/components/schemas/ErrorQuotaRateLimit'
3762+
- $ref: '#/components/schemas/ErrorNoDefaultKey'
3763+
- $ref: '#/components/schemas/ErrorMaxAccessKeys'
3764+
- $ref: '#/components/schemas/ErrorAtLeastOneKey'
3765+
- $ref: '#/components/schemas/ErrorTimeout'
3766+
- $ref: '#/components/schemas/ErrorInvalidArgument'
3767+
- $ref: '#/components/schemas/ErrorUnavailable'
3768+
- $ref: '#/components/schemas/ErrorQueryFailed'
3769+
- $ref: '#/components/schemas/ErrorNotFound'
3770+
- $ref: '#/components/schemas/ErrorUnsupportedNetwork'
3771+
'5XX':
3772+
description: Server error
3773+
content:
3774+
application/json:
3775+
schema:
3776+
oneOf:
3777+
- $ref: '#/components/schemas/ErrorWebrpcBadResponse'
3778+
- $ref: '#/components/schemas/ErrorWebrpcServerPanic'
3779+
- $ref: '#/components/schemas/ErrorWebrpcInternalError'

0 commit comments

Comments
 (0)