2.0.0: Rudder.Core 2.0.0 DLL, samples and skill docs on slugs and environments
CI / check (push) Successful in 2s
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:33 +03:00
parent 01e27bde2c
commit b18c59450c
11 changed files with 73 additions and 29 deletions
@@ -81,8 +81,8 @@ namespace RudderSdk.Unity.Samples
if (offer == null)
throw new InvalidOperationException("Store " + storeSlug + " has no offers.");
_page.Log("Stores.PurchaseAsync(" + storeSlug + ", " + offer.Id + ")");
var response = await client.Stores.PurchaseAsync(storeSlug, offer.Id);
_page.Log("Stores.PurchaseAsync(" + storeSlug + ", " + offer.Slug + ")");
var response = await client.Stores.PurchaseAsync(storeSlug, offer.Slug);
if (response != null && response.Success != true)
throw new InvalidOperationException(response.Error ?? "Purchase rejected");