2.0.0: slug-based quests, scenarios and offers; environment carried by the token; regenerated models
CI / check (push) Successful in 25s
CI / publish (push) Has been skipped

Claude-Session: https://claude.ai/code/session_01SMCvdwDmuxoaqGgvGBLk1V
This commit is contained in:
edmand46
2026-09-06 22:25:32 +03:00
parent 62025592ba
commit 372ab7cf7e
36 changed files with 138 additions and 90 deletions
+3 -3
View File
@@ -7,9 +7,6 @@ namespace RudderSdk.Core.Models.Quests;
public class Quest
{
[JsonProperty("id")]
public string? Id { get; set; }
[JsonProperty("name")]
public string? Name { get; set; }
@@ -19,6 +16,9 @@ public class Quest
[JsonProperty("rewards")]
public List<Reward>? Rewards { get; set; }
[JsonProperty("slug")]
public string? Slug { get; set; }
[JsonProperty("status")]
public string? Status { get; set; }