From 063ecb1357601bc3785944dae5458208b33d53b5 Mon Sep 17 00:00:00 2001 From: Erik Hollensbe Date: Fri, 27 Aug 2021 13:23:51 -0700 Subject: [PATCH] fix adi field type signature in rust api Signed-off-by: Erik Hollensbe --- zerotier-one-api/.openapi-generator/VERSION | 2 +- zerotier-one-api/Cargo.toml | 2 +- zerotier-one-api/docs/NetworkAllOf1MulticastSubscriptions.md | 2 +- zerotier-one-api/git_push.sh | 1 - .../src/models/network_all_of_1_multicast_subscriptions.rs | 2 +- 5 files changed, 4 insertions(+), 5 deletions(-) diff --git a/zerotier-one-api/.openapi-generator/VERSION b/zerotier-one-api/.openapi-generator/VERSION index 862529f..4b448de 100644 --- a/zerotier-one-api/.openapi-generator/VERSION +++ b/zerotier-one-api/.openapi-generator/VERSION @@ -1 +1 @@ -5.2.1-SNAPSHOT \ No newline at end of file +5.3.0-SNAPSHOT \ No newline at end of file diff --git a/zerotier-one-api/Cargo.toml b/zerotier-one-api/Cargo.toml index 7dd1c60..15b7c23 100644 --- a/zerotier-one-api/Cargo.toml +++ b/zerotier-one-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zerotier-one-api" -version = "1.0.3" +version = "1.0.4" edition = "2018" description = "OpenAPI bindings to the ZeroTierOne JSON API" authors = ["Erik Hollensbe ", "Adam Ierymenko "] diff --git a/zerotier-one-api/docs/NetworkAllOf1MulticastSubscriptions.md b/zerotier-one-api/docs/NetworkAllOf1MulticastSubscriptions.md index 4e58d77..77a1e05 100644 --- a/zerotier-one-api/docs/NetworkAllOf1MulticastSubscriptions.md +++ b/zerotier-one-api/docs/NetworkAllOf1MulticastSubscriptions.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**adi** | Option<**i32**> | | [optional] +**adi** | Option<**i64**> | | [optional] **mac** | Option<**String**> | | [optional] [[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/zerotier-one-api/git_push.sh b/zerotier-one-api/git_push.sh index ced3be2..9405f72 100644 --- a/zerotier-one-api/git_push.sh +++ b/zerotier-one-api/git_push.sh @@ -55,4 +55,3 @@ git pull origin master # Pushes (Forces) the changes in the local repository up to the remote repository echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git" git push origin master 2>&1 | grep -v 'To https' - diff --git a/zerotier-one-api/src/models/network_all_of_1_multicast_subscriptions.rs b/zerotier-one-api/src/models/network_all_of_1_multicast_subscriptions.rs index 723b739..1b61b51 100644 --- a/zerotier-one-api/src/models/network_all_of_1_multicast_subscriptions.rs +++ b/zerotier-one-api/src/models/network_all_of_1_multicast_subscriptions.rs @@ -14,7 +14,7 @@ #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] pub struct NetworkAllOf1MulticastSubscriptions { #[serde(rename = "adi", skip_serializing_if = "Option::is_none")] - pub adi: Option, + pub adi: Option, #[serde(rename = "mac", skip_serializing_if = "Option::is_none")] pub mac: Option, }