sdk: LoginWithCustomAsync + regenerated auth models
CI / check (push) Successful in 58s
CI / publish (push) Has been skipped

This commit is contained in:
edmand46
2026-08-28 13:36:12 +03:00
parent d4bbafb314
commit 3c590294c9
9 changed files with 72 additions and 1 deletions
+24
View File
@@ -0,0 +1,24 @@
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace RudderSdk.Core.Models.Auth;
public class LoginViaCustomRequest
{
[JsonProperty("customData")]
public JToken? CustomData { get; set; }
[JsonProperty("key")]
public string? Key { get; set; }
[JsonProperty("language")]
public string? Language { get; set; }
[JsonProperty("nickname")]
public string? Nickname { get; set; }
[JsonProperty("region")]
public string? Region { get; set; }
}
+14
View File
@@ -0,0 +1,14 @@
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
namespace RudderSdk.Core.Models.Auth;
public class LoginViaCustomResponse
{
[JsonProperty("accessToken")]
public string? AccessToken { get; set; }
[JsonProperty("refreshToken")]
public string? RefreshToken { get; set; }
}