models: player identities on admin player details
CI / build (push) Successful in 44s

This commit is contained in:
edmand46
2026-09-01 19:59:23 +03:00
parent 304d6c12c1
commit e8cec78cda
2 changed files with 16 additions and 5 deletions
+1
View File
@@ -3,6 +3,7 @@
package models
type AdminPlayerDetails struct {
Identities []PlayerIdentity `json:"identities,omitempty"`
Inventory []InventoryItem `json:"inventory,omitempty"`
Player AdminPlayer `json:"player,omitempty"`
Storages []PlayerStorage `json:"storages,omitempty"`
+10
View File
@@ -0,0 +1,10 @@
// Code generated by apigen. DO NOT EDIT.
package models
type PlayerIdentity struct {
CreatedAt string `json:"createdAt,omitempty"`
ID string `json:"id,omitempty"`
Provider string `json:"provider,omitempty"`
Subject string `json:"subject,omitempty"`
}