diff --git a/api/swagger/swagger-v1.yaml b/api/swagger/swagger-v1.yaml index 9c396c42..6eed67e7 100644 --- a/api/swagger/swagger-v1.yaml +++ b/api/swagger/swagger-v1.yaml @@ -13708,6 +13708,9 @@ components: spl_usdc_payout_wallet: type: string description: Solana USDC payout wallet address + coin_flair_mint: + type: string + description: Coin flair mint address playlist_library: $ref: "#/components/schemas/user_playlist_library" events: diff --git a/api/v1_users.go b/api/v1_users.go index f279feed..149d5fd8 100644 --- a/api/v1_users.go +++ b/api/v1_users.go @@ -47,6 +47,7 @@ type CreateUserRequest struct { ProfileType *string `json:"profile_type,omitempty" validate:"omitempty,oneof=label"` AllowAiAttribution *bool `json:"allow_ai_attribution,omitempty"` SplUsdcPayoutWallet *string `json:"spl_usdc_payout_wallet,omitempty"` + CoinFlairMint *string `json:"coin_flair_mint,omitempty"` PlaylistLibrary *PlaylistLibrary `json:"playlist_library,omitempty" validate:"omitempty"` Events *Events `json:"events,omitempty"` }