Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions api/swagger/swagger-v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions api/v1_users.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}
Expand Down
Loading