diff --git a/openapi/access.yaml b/openapi/access.yaml index 8c6b3b807..a6ec105d7 100644 --- a/openapi/access.yaml +++ b/openapi/access.yaml @@ -937,6 +937,7 @@ components: type: object required: - header + - block_status properties: header: $ref: '#/components/schemas/BlockHeader' @@ -954,6 +955,8 @@ components: format: uri _links: $ref: '#/components/schemas/Links' + block_status: + type: string BlockHeader: type: object required: diff --git a/openapi/go-client-generated/api/swagger.yaml b/openapi/go-client-generated/api/swagger.yaml index c85e01937..9928a6cdf 100644 --- a/openapi/go-client-generated/api/swagger.yaml +++ b/openapi/go-client-generated/api/swagger.yaml @@ -1577,6 +1577,7 @@ components: - Expired Block: required: + - block_status - header type: object properties: @@ -1590,7 +1591,10 @@ components: $ref: '#/components/schemas/Block__expandable' _links: $ref: '#/components/schemas/Links' + block_status: + type: string example: + block_status: block_status payload: collection_guarantees: - collection_id: null diff --git a/openapi/go-client-generated/docs/Block.md b/openapi/go-client-generated/docs/Block.md index c7308560c..9ccadf117 100644 --- a/openapi/go-client-generated/docs/Block.md +++ b/openapi/go-client-generated/docs/Block.md @@ -8,6 +8,7 @@ Name | Type | Description | Notes **ExecutionResult** | [***ExecutionResult**](ExecutionResult.md) | | [optional] [default to null] **Expandable** | [***BlockExpandable**](Block__expandable.md) | | [optional] [default to null] **Links** | [***Links**](Links.md) | | [optional] [default to null] +**BlockStatus** | **string** | | [default to null] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/openapi/go-client-generated/model_block.go b/openapi/go-client-generated/model_block.go index 3a916dad3..48d8addc7 100644 --- a/openapi/go-client-generated/model_block.go +++ b/openapi/go-client-generated/model_block.go @@ -14,4 +14,5 @@ type Block struct { ExecutionResult *ExecutionResult `json:"execution_result,omitempty"` Expandable *BlockExpandable `json:"_expandable,omitempty"` Links *Links `json:"_links,omitempty"` + BlockStatus string `json:"block_status"` }