diff --git a/src/c2se/backend/identity.rs b/src/c2se/backend/identity.rs index dc8b3e7..5c244f3 100644 --- a/src/c2se/backend/identity.rs +++ b/src/c2se/backend/identity.rs @@ -38,6 +38,6 @@ pub mod signin_response { #[derive(Clone, PartialEq, ::prost::Message)] pub struct Result { #[prost(string, tag = "1")] - pub session_id: ::prost::alloc::string::String, + pub access_token: ::prost::alloc::string::String, } } diff --git a/src/c2se/frontend/identity.rs b/src/c2se/frontend/identity.rs index 3c266dd..1916b17 100644 --- a/src/c2se/frontend/identity.rs +++ b/src/c2se/frontend/identity.rs @@ -38,6 +38,6 @@ pub mod signin_response { #[derive(Clone, PartialEq, ::prost::Message)] pub struct Result { #[prost(string, tag = "1")] - pub session_id: ::prost::alloc::string::String, + pub access_token: ::prost::alloc::string::String, } } diff --git a/src/models/core/network.rs b/src/models/core/network.rs index d8e84b3..5c1cd47 100644 --- a/src/models/core/network.rs +++ b/src/models/core/network.rs @@ -7,5 +7,5 @@ pub struct Client { #[prost(string, optional, tag = "2")] pub site_url: ::core::option::Option<::prost::alloc::string::String>, #[prost(string, optional, tag = "3")] - pub session_id: ::core::option::Option<::prost::alloc::string::String>, + pub access_token: ::core::option::Option<::prost::alloc::string::String>, } diff --git a/src/ss/member/identity.rs b/src/ss/member/identity.rs index 5943b10..f722514 100644 --- a/src/ss/member/identity.rs +++ b/src/ss/member/identity.rs @@ -104,6 +104,6 @@ pub mod signin_response { #[derive(Clone, PartialEq, ::prost::Message)] pub struct Result { #[prost(string, tag = "1")] - pub session_id: ::prost::alloc::string::String, + pub access_token: ::prost::alloc::string::String, } }