revert typing changes

This commit is contained in:
CWX
2025-01-23 13:38:01 +00:00
parent 8176c815da
commit d56b8d1aaa
3 changed files with 3 additions and 3 deletions
@@ -17,7 +17,7 @@ public record AddItemDirectRequest
public bool? FoundInRaid { get; set; }
[JsonPropertyName("callback")]
public Action<double, ProcessBuyTradeRequestData?, string?, PmcData?>? Callback { get; set; }
public Action<double>? Callback { get; set; }
[JsonPropertyName("useSortingTable")]
public bool? UseSortingTable { get; set; }
@@ -16,7 +16,7 @@ public record AddItemsDirectRequest
/// Runs after EACH item with children is added
[JsonPropertyName("callback")]
public Action<double, ProcessBuyTradeRequestData, string, PmcData>? Callback { get; set; }
public Action<double>? Callback { get; set; }
/// Should sorting table be used when no space found in stash
[JsonPropertyName("useSortingTable")]
@@ -182,7 +182,7 @@ public record Product
public string? SlotId { get; set; }
[JsonPropertyName("location")]
public object? Location { get; set; }
public ItemLocation? Location { get; set; }
[JsonPropertyName("upd")]
public Upd? Upd { get; set; }