add player data operations: update, ban/unban, delete, inventory adjust, storage

Players.Update/Ban/Unban/Delete + List search; new InventoryService.Adjust
and StorageService.Get/Upsert/Delete; IdempotencyKey on wallet adjust;
models regenerated via apigen
This commit is contained in:
edmand46
2026-08-13 08:47:14 +03:00
parent d602a95baf
commit ae74fb22d3
12 changed files with 221 additions and 22 deletions
@@ -0,0 +1,10 @@
// Code generated by apigen. DO NOT EDIT.
package models
type AdjustPlayerInventoryItemRequest struct {
Amount int64 `json:"amount,omitempty"`
IdempotencyKey string `json:"idempotencyKey,omitempty"`
Reason string `json:"reason,omitempty"`
Slug string `json:"slug,omitempty"`
}