|
1 | | -# sequence-api v0.4.0 d83adcfbb5b771a1c154413314fde41e50b9eedb |
| 1 | +# sequence-api v0.4.0 2e3b9931a7dffc999365e09e36b3d92a1b5abab6 |
2 | 2 | # -- |
3 | 3 | # Code generated by [email protected] with openapi generator; DO NOT EDIT |
4 | 4 | # |
@@ -1141,10 +1141,30 @@ components: |
1141 | 1141 | description: '[]IntentPrecondition' |
1142 | 1142 | items: |
1143 | 1143 | $ref: '#/components/schemas/IntentPrecondition' |
| 1144 | + executionStatus: |
| 1145 | + type: string |
| 1146 | + metaTxnId: |
| 1147 | + type: string |
| 1148 | + txnHash: |
| 1149 | + type: string |
1144 | 1150 | updatedAt: |
1145 | 1151 | type: string |
1146 | 1152 | createdAt: |
1147 | 1153 | type: string |
| 1154 | + MetaTxnReceipt: |
| 1155 | + type: object |
| 1156 | + required: |
| 1157 | + - metaTxID |
| 1158 | + - status |
| 1159 | + properties: |
| 1160 | + metaTxID: |
| 1161 | + type: string |
| 1162 | + status: |
| 1163 | + type: string |
| 1164 | + txnReceipt: |
| 1165 | + type: string |
| 1166 | + revertReason: |
| 1167 | + type: string |
1148 | 1168 | InviteCode: |
1149 | 1169 | type: object |
1150 | 1170 | required: |
@@ -3087,6 +3107,28 @@ components: |
3087 | 3107 | type: number |
3088 | 3108 | destinationChainId: |
3089 | 3109 | type: number |
| 3110 | + API_QueueIntentConfigExecution_Request: |
| 3111 | + type: object |
| 3112 | + properties: |
| 3113 | + intentConfigId: |
| 3114 | + type: number |
| 3115 | + API_GetIntentConfigExecutionStatus_Request: |
| 3116 | + type: object |
| 3117 | + properties: |
| 3118 | + intentConfigId: |
| 3119 | + type: number |
| 3120 | + API_ListIntentConfigs_Request: |
| 3121 | + type: object |
| 3122 | + properties: |
| 3123 | + page: |
| 3124 | + $ref: '#/components/schemas/Page' |
| 3125 | + executionStatus: |
| 3126 | + type: string |
| 3127 | + API_QueueMetaTxnReceipt_Request: |
| 3128 | + type: object |
| 3129 | + properties: |
| 3130 | + metaTxID: |
| 3131 | + type: string |
3090 | 3132 | API_IsValidSignature_Response: |
3091 | 3133 | type: object |
3092 | 3134 | properties: |
@@ -3164,6 +3206,31 @@ components: |
3164 | 3206 | properties: |
3165 | 3207 | transfer: |
3166 | 3208 | $ref: '#/components/schemas/CCTPTransfer' |
| 3209 | + API_QueueIntentConfigExecution_Response: |
| 3210 | + type: object |
| 3211 | + properties: |
| 3212 | + status: |
| 3213 | + type: boolean |
| 3214 | + API_GetIntentConfigExecutionStatus_Response: |
| 3215 | + type: object |
| 3216 | + properties: |
| 3217 | + executionStatus: |
| 3218 | + type: string |
| 3219 | + API_ListIntentConfigs_Response: |
| 3220 | + type: object |
| 3221 | + properties: |
| 3222 | + page: |
| 3223 | + $ref: '#/components/schemas/Page' |
| 3224 | + intentConfigs: |
| 3225 | + type: array |
| 3226 | + description: '[]IntentConfig' |
| 3227 | + items: |
| 3228 | + $ref: '#/components/schemas/IntentConfig' |
| 3229 | + API_QueueMetaTxnReceipt_Response: |
| 3230 | + type: object |
| 3231 | + properties: |
| 3232 | + status: |
| 3233 | + type: boolean |
3167 | 3234 | paths: |
3168 | 3235 | /rpc/API/IsValidSignature: |
3169 | 3236 | post: |
@@ -3992,3 +4059,257 @@ paths: |
3992 | 4059 | - $ref: '#/components/schemas/ErrorWebrpcBadResponse' |
3993 | 4060 | - $ref: '#/components/schemas/ErrorWebrpcServerPanic' |
3994 | 4061 | - $ref: '#/components/schemas/ErrorWebrpcInternalError' |
| 4062 | + /rpc/API/QueueIntentConfigExecution: |
| 4063 | + post: |
| 4064 | + tags: ["API"] |
| 4065 | + summary: "" |
| 4066 | + description: | |
| 4067 | + Intent Machine Worker |
| 4068 | + requestBody: |
| 4069 | + content: |
| 4070 | + application/json: |
| 4071 | + schema: |
| 4072 | + $ref: '#/components/schemas/API_QueueIntentConfigExecution_Request' |
| 4073 | + responses: |
| 4074 | + '200': |
| 4075 | + description: OK |
| 4076 | + content: |
| 4077 | + application/json: |
| 4078 | + schema: |
| 4079 | + $ref: '#/components/schemas/API_QueueIntentConfigExecution_Response' |
| 4080 | + '4XX': |
| 4081 | + description: Client error |
| 4082 | + content: |
| 4083 | + application/json: |
| 4084 | + schema: |
| 4085 | + oneOf: |
| 4086 | + - $ref: '#/components/schemas/ErrorWebrpcEndpoint' |
| 4087 | + - $ref: '#/components/schemas/ErrorWebrpcRequestFailed' |
| 4088 | + - $ref: '#/components/schemas/ErrorWebrpcBadRoute' |
| 4089 | + - $ref: '#/components/schemas/ErrorWebrpcBadMethod' |
| 4090 | + - $ref: '#/components/schemas/ErrorWebrpcBadRequest' |
| 4091 | + - $ref: '#/components/schemas/ErrorWebrpcClientDisconnected' |
| 4092 | + - $ref: '#/components/schemas/ErrorWebrpcStreamLost' |
| 4093 | + - $ref: '#/components/schemas/ErrorUnauthorized' |
| 4094 | + - $ref: '#/components/schemas/ErrorPermissionDenied' |
| 4095 | + - $ref: '#/components/schemas/ErrorSessionExpired' |
| 4096 | + - $ref: '#/components/schemas/ErrorMethodNotFound' |
| 4097 | + - $ref: '#/components/schemas/ErrorRequestConflict' |
| 4098 | + - $ref: '#/components/schemas/ErrorAborted' |
| 4099 | + - $ref: '#/components/schemas/ErrorGeoblocked' |
| 4100 | + - $ref: '#/components/schemas/ErrorRateLimited' |
| 4101 | + - $ref: '#/components/schemas/ErrorProjectNotFound' |
| 4102 | + - $ref: '#/components/schemas/ErrorAccessKeyNotFound' |
| 4103 | + - $ref: '#/components/schemas/ErrorAccessKeyMismatch' |
| 4104 | + - $ref: '#/components/schemas/ErrorInvalidOrigin' |
| 4105 | + - $ref: '#/components/schemas/ErrorInvalidService' |
| 4106 | + - $ref: '#/components/schemas/ErrorUnauthorizedUser' |
| 4107 | + - $ref: '#/components/schemas/ErrorQuotaExceeded' |
| 4108 | + - $ref: '#/components/schemas/ErrorQuotaRateLimit' |
| 4109 | + - $ref: '#/components/schemas/ErrorNoDefaultKey' |
| 4110 | + - $ref: '#/components/schemas/ErrorMaxAccessKeys' |
| 4111 | + - $ref: '#/components/schemas/ErrorAtLeastOneKey' |
| 4112 | + - $ref: '#/components/schemas/ErrorTimeout' |
| 4113 | + - $ref: '#/components/schemas/ErrorInvalidArgument' |
| 4114 | + - $ref: '#/components/schemas/ErrorUnavailable' |
| 4115 | + - $ref: '#/components/schemas/ErrorQueryFailed' |
| 4116 | + - $ref: '#/components/schemas/ErrorNotFound' |
| 4117 | + - $ref: '#/components/schemas/ErrorUnsupportedNetwork' |
| 4118 | + '5XX': |
| 4119 | + description: Server error |
| 4120 | + content: |
| 4121 | + application/json: |
| 4122 | + schema: |
| 4123 | + oneOf: |
| 4124 | + - $ref: '#/components/schemas/ErrorWebrpcBadResponse' |
| 4125 | + - $ref: '#/components/schemas/ErrorWebrpcServerPanic' |
| 4126 | + - $ref: '#/components/schemas/ErrorWebrpcInternalError' |
| 4127 | + /rpc/API/GetIntentConfigExecutionStatus: |
| 4128 | + post: |
| 4129 | + tags: ["API"] |
| 4130 | + summary: "" |
| 4131 | + requestBody: |
| 4132 | + content: |
| 4133 | + application/json: |
| 4134 | + schema: |
| 4135 | + $ref: '#/components/schemas/API_GetIntentConfigExecutionStatus_Request' |
| 4136 | + responses: |
| 4137 | + '200': |
| 4138 | + description: OK |
| 4139 | + content: |
| 4140 | + application/json: |
| 4141 | + schema: |
| 4142 | + $ref: '#/components/schemas/API_GetIntentConfigExecutionStatus_Response' |
| 4143 | + '4XX': |
| 4144 | + description: Client error |
| 4145 | + content: |
| 4146 | + application/json: |
| 4147 | + schema: |
| 4148 | + oneOf: |
| 4149 | + - $ref: '#/components/schemas/ErrorWebrpcEndpoint' |
| 4150 | + - $ref: '#/components/schemas/ErrorWebrpcRequestFailed' |
| 4151 | + - $ref: '#/components/schemas/ErrorWebrpcBadRoute' |
| 4152 | + - $ref: '#/components/schemas/ErrorWebrpcBadMethod' |
| 4153 | + - $ref: '#/components/schemas/ErrorWebrpcBadRequest' |
| 4154 | + - $ref: '#/components/schemas/ErrorWebrpcClientDisconnected' |
| 4155 | + - $ref: '#/components/schemas/ErrorWebrpcStreamLost' |
| 4156 | + - $ref: '#/components/schemas/ErrorUnauthorized' |
| 4157 | + - $ref: '#/components/schemas/ErrorPermissionDenied' |
| 4158 | + - $ref: '#/components/schemas/ErrorSessionExpired' |
| 4159 | + - $ref: '#/components/schemas/ErrorMethodNotFound' |
| 4160 | + - $ref: '#/components/schemas/ErrorRequestConflict' |
| 4161 | + - $ref: '#/components/schemas/ErrorAborted' |
| 4162 | + - $ref: '#/components/schemas/ErrorGeoblocked' |
| 4163 | + - $ref: '#/components/schemas/ErrorRateLimited' |
| 4164 | + - $ref: '#/components/schemas/ErrorProjectNotFound' |
| 4165 | + - $ref: '#/components/schemas/ErrorAccessKeyNotFound' |
| 4166 | + - $ref: '#/components/schemas/ErrorAccessKeyMismatch' |
| 4167 | + - $ref: '#/components/schemas/ErrorInvalidOrigin' |
| 4168 | + - $ref: '#/components/schemas/ErrorInvalidService' |
| 4169 | + - $ref: '#/components/schemas/ErrorUnauthorizedUser' |
| 4170 | + - $ref: '#/components/schemas/ErrorQuotaExceeded' |
| 4171 | + - $ref: '#/components/schemas/ErrorQuotaRateLimit' |
| 4172 | + - $ref: '#/components/schemas/ErrorNoDefaultKey' |
| 4173 | + - $ref: '#/components/schemas/ErrorMaxAccessKeys' |
| 4174 | + - $ref: '#/components/schemas/ErrorAtLeastOneKey' |
| 4175 | + - $ref: '#/components/schemas/ErrorTimeout' |
| 4176 | + - $ref: '#/components/schemas/ErrorInvalidArgument' |
| 4177 | + - $ref: '#/components/schemas/ErrorUnavailable' |
| 4178 | + - $ref: '#/components/schemas/ErrorQueryFailed' |
| 4179 | + - $ref: '#/components/schemas/ErrorNotFound' |
| 4180 | + - $ref: '#/components/schemas/ErrorUnsupportedNetwork' |
| 4181 | + '5XX': |
| 4182 | + description: Server error |
| 4183 | + content: |
| 4184 | + application/json: |
| 4185 | + schema: |
| 4186 | + oneOf: |
| 4187 | + - $ref: '#/components/schemas/ErrorWebrpcBadResponse' |
| 4188 | + - $ref: '#/components/schemas/ErrorWebrpcServerPanic' |
| 4189 | + - $ref: '#/components/schemas/ErrorWebrpcInternalError' |
| 4190 | + /rpc/API/ListIntentConfigs: |
| 4191 | + post: |
| 4192 | + tags: ["API"] |
| 4193 | + summary: "" |
| 4194 | + requestBody: |
| 4195 | + content: |
| 4196 | + application/json: |
| 4197 | + schema: |
| 4198 | + $ref: '#/components/schemas/API_ListIntentConfigs_Request' |
| 4199 | + responses: |
| 4200 | + '200': |
| 4201 | + description: OK |
| 4202 | + content: |
| 4203 | + application/json: |
| 4204 | + schema: |
| 4205 | + $ref: '#/components/schemas/API_ListIntentConfigs_Response' |
| 4206 | + '4XX': |
| 4207 | + description: Client error |
| 4208 | + content: |
| 4209 | + application/json: |
| 4210 | + schema: |
| 4211 | + oneOf: |
| 4212 | + - $ref: '#/components/schemas/ErrorWebrpcEndpoint' |
| 4213 | + - $ref: '#/components/schemas/ErrorWebrpcRequestFailed' |
| 4214 | + - $ref: '#/components/schemas/ErrorWebrpcBadRoute' |
| 4215 | + - $ref: '#/components/schemas/ErrorWebrpcBadMethod' |
| 4216 | + - $ref: '#/components/schemas/ErrorWebrpcBadRequest' |
| 4217 | + - $ref: '#/components/schemas/ErrorWebrpcClientDisconnected' |
| 4218 | + - $ref: '#/components/schemas/ErrorWebrpcStreamLost' |
| 4219 | + - $ref: '#/components/schemas/ErrorUnauthorized' |
| 4220 | + - $ref: '#/components/schemas/ErrorPermissionDenied' |
| 4221 | + - $ref: '#/components/schemas/ErrorSessionExpired' |
| 4222 | + - $ref: '#/components/schemas/ErrorMethodNotFound' |
| 4223 | + - $ref: '#/components/schemas/ErrorRequestConflict' |
| 4224 | + - $ref: '#/components/schemas/ErrorAborted' |
| 4225 | + - $ref: '#/components/schemas/ErrorGeoblocked' |
| 4226 | + - $ref: '#/components/schemas/ErrorRateLimited' |
| 4227 | + - $ref: '#/components/schemas/ErrorProjectNotFound' |
| 4228 | + - $ref: '#/components/schemas/ErrorAccessKeyNotFound' |
| 4229 | + - $ref: '#/components/schemas/ErrorAccessKeyMismatch' |
| 4230 | + - $ref: '#/components/schemas/ErrorInvalidOrigin' |
| 4231 | + - $ref: '#/components/schemas/ErrorInvalidService' |
| 4232 | + - $ref: '#/components/schemas/ErrorUnauthorizedUser' |
| 4233 | + - $ref: '#/components/schemas/ErrorQuotaExceeded' |
| 4234 | + - $ref: '#/components/schemas/ErrorQuotaRateLimit' |
| 4235 | + - $ref: '#/components/schemas/ErrorNoDefaultKey' |
| 4236 | + - $ref: '#/components/schemas/ErrorMaxAccessKeys' |
| 4237 | + - $ref: '#/components/schemas/ErrorAtLeastOneKey' |
| 4238 | + - $ref: '#/components/schemas/ErrorTimeout' |
| 4239 | + - $ref: '#/components/schemas/ErrorInvalidArgument' |
| 4240 | + - $ref: '#/components/schemas/ErrorUnavailable' |
| 4241 | + - $ref: '#/components/schemas/ErrorQueryFailed' |
| 4242 | + - $ref: '#/components/schemas/ErrorNotFound' |
| 4243 | + - $ref: '#/components/schemas/ErrorUnsupportedNetwork' |
| 4244 | + '5XX': |
| 4245 | + description: Server error |
| 4246 | + content: |
| 4247 | + application/json: |
| 4248 | + schema: |
| 4249 | + oneOf: |
| 4250 | + - $ref: '#/components/schemas/ErrorWebrpcBadResponse' |
| 4251 | + - $ref: '#/components/schemas/ErrorWebrpcServerPanic' |
| 4252 | + - $ref: '#/components/schemas/ErrorWebrpcInternalError' |
| 4253 | + /rpc/API/QueueMetaTxnReceipt: |
| 4254 | + post: |
| 4255 | + tags: ["API"] |
| 4256 | + summary: "" |
| 4257 | + requestBody: |
| 4258 | + content: |
| 4259 | + application/json: |
| 4260 | + schema: |
| 4261 | + $ref: '#/components/schemas/API_QueueMetaTxnReceipt_Request' |
| 4262 | + responses: |
| 4263 | + '200': |
| 4264 | + description: OK |
| 4265 | + content: |
| 4266 | + application/json: |
| 4267 | + schema: |
| 4268 | + $ref: '#/components/schemas/API_QueueMetaTxnReceipt_Response' |
| 4269 | + '4XX': |
| 4270 | + description: Client error |
| 4271 | + content: |
| 4272 | + application/json: |
| 4273 | + schema: |
| 4274 | + oneOf: |
| 4275 | + - $ref: '#/components/schemas/ErrorWebrpcEndpoint' |
| 4276 | + - $ref: '#/components/schemas/ErrorWebrpcRequestFailed' |
| 4277 | + - $ref: '#/components/schemas/ErrorWebrpcBadRoute' |
| 4278 | + - $ref: '#/components/schemas/ErrorWebrpcBadMethod' |
| 4279 | + - $ref: '#/components/schemas/ErrorWebrpcBadRequest' |
| 4280 | + - $ref: '#/components/schemas/ErrorWebrpcClientDisconnected' |
| 4281 | + - $ref: '#/components/schemas/ErrorWebrpcStreamLost' |
| 4282 | + - $ref: '#/components/schemas/ErrorUnauthorized' |
| 4283 | + - $ref: '#/components/schemas/ErrorPermissionDenied' |
| 4284 | + - $ref: '#/components/schemas/ErrorSessionExpired' |
| 4285 | + - $ref: '#/components/schemas/ErrorMethodNotFound' |
| 4286 | + - $ref: '#/components/schemas/ErrorRequestConflict' |
| 4287 | + - $ref: '#/components/schemas/ErrorAborted' |
| 4288 | + - $ref: '#/components/schemas/ErrorGeoblocked' |
| 4289 | + - $ref: '#/components/schemas/ErrorRateLimited' |
| 4290 | + - $ref: '#/components/schemas/ErrorProjectNotFound' |
| 4291 | + - $ref: '#/components/schemas/ErrorAccessKeyNotFound' |
| 4292 | + - $ref: '#/components/schemas/ErrorAccessKeyMismatch' |
| 4293 | + - $ref: '#/components/schemas/ErrorInvalidOrigin' |
| 4294 | + - $ref: '#/components/schemas/ErrorInvalidService' |
| 4295 | + - $ref: '#/components/schemas/ErrorUnauthorizedUser' |
| 4296 | + - $ref: '#/components/schemas/ErrorQuotaExceeded' |
| 4297 | + - $ref: '#/components/schemas/ErrorQuotaRateLimit' |
| 4298 | + - $ref: '#/components/schemas/ErrorNoDefaultKey' |
| 4299 | + - $ref: '#/components/schemas/ErrorMaxAccessKeys' |
| 4300 | + - $ref: '#/components/schemas/ErrorAtLeastOneKey' |
| 4301 | + - $ref: '#/components/schemas/ErrorTimeout' |
| 4302 | + - $ref: '#/components/schemas/ErrorInvalidArgument' |
| 4303 | + - $ref: '#/components/schemas/ErrorUnavailable' |
| 4304 | + - $ref: '#/components/schemas/ErrorQueryFailed' |
| 4305 | + - $ref: '#/components/schemas/ErrorNotFound' |
| 4306 | + - $ref: '#/components/schemas/ErrorUnsupportedNetwork' |
| 4307 | + '5XX': |
| 4308 | + description: Server error |
| 4309 | + content: |
| 4310 | + application/json: |
| 4311 | + schema: |
| 4312 | + oneOf: |
| 4313 | + - $ref: '#/components/schemas/ErrorWebrpcBadResponse' |
| 4314 | + - $ref: '#/components/schemas/ErrorWebrpcServerPanic' |
| 4315 | + - $ref: '#/components/schemas/ErrorWebrpcInternalError' |
0 commit comments