Nest Changelog

1.43.26

10/17/2023

1.44.0 PRE

10/9/2023

POST /webhooks/feedfm

Internal use only. Used by FeedFM to manage radio stations.

Request Body
{
  creator: string,
- eventType?: 'station_requested' | 'station_published_to_production' | 'station_published_to_development' | 'station_unpublished',

explicit: bool, meta?: string, name: string, testing: bool, uuid?: string, }

POST /webhooks/feedfm

Internal use only. Used by FeedFM to manage radio stations.

Request Body
{
  creator: string,

+ event?: 'station_requested' | 'station_published_to_production' | 'station_published_to_development' | 'station_unpublished', explicit: bool, meta?: string, name: string, testing: bool, uuid?: string, }
Added endpoints

DELETE /content/bulkDelete

ADMIN only. Delete content by EITHER instructorId, OR a date range, with or without licensing filter.

Guard: admin

Response Body
{
  data: {
    count?: number,
  },
}

POST /content/emergencyDelete

Response Body
{
  data: List<{

  }>,
  pagination: {
    page?: number,
    skip?: number,
    take?: number,
    total?: {
      pages?: number,
      rows?: number,
    },
  },
}
Deleted endpoints
WORK IN PROGRESS