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
50 changes: 50 additions & 0 deletions api/swagger/swagger-v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14885,6 +14885,8 @@ components:
type: boolean
is_tombstone:
type: boolean
is_members_only:
type: boolean
is_muted:
type: boolean
created_at:
Expand Down Expand Up @@ -16488,6 +16490,7 @@ components:
- $ref: "#/components/schemas/artist_remix_contest_ending_soon_notification"
- $ref: "#/components/schemas/artist_remix_contest_submissions_notification"
- $ref: "#/components/schemas/fan_remix_contest_winners_selected_notification"
- $ref: "#/components/schemas/fan_club_text_post_notification"
discriminator:
propertyName: type
mapping:
Expand Down Expand Up @@ -16532,6 +16535,7 @@ components:
artist_remix_contest_ending_soon: "#/components/schemas/artist_remix_contest_ending_soon_notification"
artist_remix_contest_submissions: "#/components/schemas/artist_remix_contest_submissions_notification"
fan_remix_contest_winners_selected: "#/components/schemas/fan_remix_contest_winners_selected_notification"
fan_club_text_post: "#/components/schemas/fan_club_text_post_notification"
save_notification:
required:
- actions
Expand Down Expand Up @@ -17377,6 +17381,26 @@ components:
type: array
items:
$ref: "#/components/schemas/supporter_rank_up_notification_action"
fan_club_text_post_notification:
required:
- actions
- group_id
- is_seen
- type
type: object
properties:
type:
type: string
group_id:
type: string
is_seen:
type: boolean
seen_at:
type: integer
actions:
type: array
items:
$ref: "#/components/schemas/fan_club_text_post_notification_action"
fan_remix_contest_started_notification:
required:
- actions
Expand Down Expand Up @@ -18643,6 +18667,22 @@ components:
type: integer
data:
$ref: "#/components/schemas/track_added_to_playlist_notification_action_data"
fan_club_text_post_notification_action:
required:
- data
- specifier
- timestamp
- type
type: object
properties:
specifier:
type: string
type:
type: string
timestamp:
type: integer
data:
$ref: "#/components/schemas/fan_club_text_post_notification_action_data"
fan_remix_contest_started_notification_action:
required:
- data
Expand Down Expand Up @@ -18696,6 +18736,16 @@ components:
type: string
entity_id:
type: string
fan_club_text_post_notification_action_data:
required:
- entity_user_id
- comment_id
type: object
properties:
entity_user_id:
type: string
comment_id:
type: string
fan_remix_contest_started_notification_action_data:
required:
- entity_id
Expand Down
Loading