From b21f675a1dd2d528e0f12ccb0cd1ead73d8d9b64 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot Date: Fri, 25 Oct 2024 09:02:58 +0000 Subject: [PATCH] v1.10.5 --- api/openapi.yaml | 16 ++++++++++++++++ docs/TypesMsgType.md | 4 ++++ model_types_msg_type.go | 4 ++++ 3 files changed, 24 insertions(+) diff --git a/api/openapi.yaml b/api/openapi.yaml index fd7234d..2306141 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -477,6 +477,8 @@ paths: - MsgTimeout - MsgTimeoutOnClose - MsgAcknowledgement + - MsgSignalVersion + - MsgTryUpgrade type: string responses: "200": @@ -741,6 +743,8 @@ paths: - MsgTimeout - MsgTimeoutOnClose - MsgAcknowledgement + - MsgSignalVersion + - MsgTryUpgrade type: string - description: Time from in unix timestamp in: query @@ -1389,6 +1393,8 @@ paths: - MsgTimeout - MsgTimeoutOnClose - MsgAcknowledgement + - MsgSignalVersion + - MsgTryUpgrade type: string - description: Comma-separated message types which should be excluded from list in: query @@ -1469,6 +1475,8 @@ paths: - MsgTimeout - MsgTimeoutOnClose - MsgAcknowledgement + - MsgSignalVersion + - MsgTryUpgrade type: string responses: "200": @@ -3498,6 +3506,8 @@ paths: - MsgTimeout - MsgTimeoutOnClose - MsgAcknowledgement + - MsgSignalVersion + - MsgTryUpgrade type: string - description: Comma-separated message types list which should be excluded in: query @@ -3578,6 +3588,8 @@ paths: - MsgTimeout - MsgTimeoutOnClose - MsgAcknowledgement + - MsgSignalVersion + - MsgTryUpgrade type: string - description: Time from in unix timestamp in: query @@ -6763,6 +6775,8 @@ components: - MsgTimeout - MsgTimeoutOnClose - MsgAcknowledgement + - MsgSignalVersion + - MsgTryUpgrade type: string x-enum-varnames: - MsgUnknown @@ -6839,6 +6853,8 @@ components: - MsgTimeout - MsgTimeoutOnClose - MsgAcknowledgement + - MsgSignalVersion + - MsgTryUpgrade securitySchemes: ApiKeyAuth: description: To authorize your requests you have to select the required tariff diff --git a/docs/TypesMsgType.md b/docs/TypesMsgType.md index c053459..95ae546 100644 --- a/docs/TypesMsgType.md +++ b/docs/TypesMsgType.md @@ -151,6 +151,10 @@ * `MsgAcknowledgement` (value: `"MsgAcknowledgement"`) +* `MsgSignalVersion` (value: `"MsgSignalVersion"`) + +* `MsgTryUpgrade` (value: `"MsgTryUpgrade"`) + [[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/model_types_msg_type.go b/model_types_msg_type.go index b8abd2c..31d742d 100644 --- a/model_types_msg_type.go +++ b/model_types_msg_type.go @@ -95,6 +95,8 @@ const ( MsgTimeout TypesMsgType = "MsgTimeout" MsgTimeoutOnClose TypesMsgType = "MsgTimeoutOnClose" MsgAcknowledgement TypesMsgType = "MsgAcknowledgement" + MsgSignalVersion TypesMsgType = "MsgSignalVersion" + MsgTryUpgrade TypesMsgType = "MsgTryUpgrade" ) // All allowed values of TypesMsgType enum @@ -173,6 +175,8 @@ var AllowedTypesMsgTypeEnumValues = []TypesMsgType{ "MsgTimeout", "MsgTimeoutOnClose", "MsgAcknowledgement", + "MsgSignalVersion", + "MsgTryUpgrade", } func (v *TypesMsgType) UnmarshalJSON(src []byte) error {