Skip to content
Merged
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
19 changes: 16 additions & 3 deletions api/swagger/swagger-v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9750,7 +9750,6 @@ components:
- $ref: '#/components/schemas/tip_gate'
- $ref: '#/components/schemas/follow_gate'
- $ref: '#/components/schemas/purchase_gate'
- $ref: '#/components/schemas/nft_gate'
- $ref: '#/components/schemas/token_gate'
update_track_request_body:
type: object
Expand Down Expand Up @@ -14640,10 +14639,24 @@ components:
- splits
type: object
properties:
splits:
$ref: '#/components/schemas/wild_card_split'
price:
type: integer
description: The price in USDC needed to unlock
splits:
type: array
items:
$ref: "#/components/schemas/payment_split"
payment_split:
required:
- user_id
- percentage
type: object
properties:
user_id:
type: integer
example: 1234
percentage:
type: number
search_track:
required:
- access
Expand Down