0.4.0: Claim, Models/ DTOs, compile
CI / publish (push) Failing after 39s
CI / check (push) Successful in 52s

LeaderboardSession.ClaimAsync sends onClaim. Generated DTOs live under Models/ with nullable wire fields. Remove incomplete duplicate type files.
This commit is contained in:
edmand46
2026-08-29 11:33:01 +03:00
parent 3c590294c9
commit ea20ea6d51
89 changed files with 1414 additions and 396 deletions
+2 -3
View File
@@ -1,6 +1,5 @@
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
namespace RudderSdk.Core.Models.ProjectStorage;
@@ -8,9 +7,9 @@ namespace RudderSdk.Core.Models.ProjectStorage;
public class GetProjectStorageResponse
{
[JsonProperty("items")]
public List<ProjectStorageItem> Items { get; set; }
public List<ProjectStorageItem>? Items { get; set; }
[JsonProperty("nextCursor")]
public string NextCursor { get; set; }
public string? NextCursor { get; set; }
}
+10 -11
View File
@@ -1,37 +1,36 @@
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
using System;
namespace RudderSdk.Core.Models.ProjectStorage;
public class ProjectStorageItem
{
[JsonProperty("data")]
public string Data { get; set; }
public string? Data { get; set; }
[JsonProperty("expiresAt")]
public string ExpiresAt { get; set; }
public DateTimeOffset? ExpiresAt { get; set; }
[JsonProperty("id")]
public string Id { get; set; }
public string? Id { get; set; }
[JsonProperty("readPermission")]
public string ReadPermission { get; set; }
public string? ReadPermission { get; set; }
[JsonProperty("size")]
public long Size { get; set; }
public long? Size { get; set; }
[JsonProperty("type")]
public string Type { get; set; }
public string? Type { get; set; }
[JsonProperty("updatedAt")]
public string UpdatedAt { get; set; }
public DateTimeOffset? UpdatedAt { get; set; }
[JsonProperty("version")]
public long Version { get; set; }
public long? Version { get; set; }
[JsonProperty("writePermission")]
public string WritePermission { get; set; }
public string? WritePermission { get; set; }
}
+2 -4
View File
@@ -1,16 +1,14 @@
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
namespace RudderSdk.Core.Models.ProjectStorage;
public class ProjectStorageUpdateItem
{
[JsonProperty("data")]
public string Data { get; set; }
public string? Data { get; set; }
[JsonProperty("type")]
public string Type { get; set; }
public string? Type { get; set; }
}
@@ -1,6 +1,5 @@
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
namespace RudderSdk.Core.Models.ProjectStorage;
@@ -8,9 +7,9 @@ namespace RudderSdk.Core.Models.ProjectStorage;
public class UpdateProjectStorageRequest
{
[JsonProperty("idempotencyKey")]
public string IdempotencyKey { get; set; }
public string? IdempotencyKey { get; set; }
[JsonProperty("items")]
public List<ProjectStorageUpdateItem> Items { get; set; }
public List<ProjectStorageUpdateItem>? Items { get; set; }
}