Nest Changelog

1.0.5

9/22/2021

1.0.6

9/24/2021

2 changed endpoints

POST /auth

Sign in with email address and password

Response Body
{
  data: {
-   family?: List<string>,

guid?: string, jwt?: string, mongoId?: string, plan: { features?: record, id?: number, name?: string, }, userId?: number, }, }

POST /auth

Sign in with email address and password

Response Body
{
  data: {

+ family?: List<{ + id?: number, + image: { + default?: string, + large?: string, + medium?: string, + small?: string, + }, + nickname?: string, + }>, guid?: string, jwt?: string, mongoId?: string, plan: { features?: record, id?: number, name?: string, }, userId?: number, }, }

GET /auth/{sessionGuid}

Refresh the token

Response Body
{
  data: {
-   family?: List<string>,

guid?: string, jwt?: string, mongoId?: string, plan: { features?: record, id?: number, name?: string, }, userId?: number, }, }

GET /auth/{sessionGuid}

Refresh the token

Response Body
{
  data: {

+ family?: List<{ + id?: number, + image: { + default?: string, + large?: string, + medium?: string, + small?: string, + }, + nickname?: string, + }>, guid?: string, jwt?: string, mongoId?: string, plan: { features?: record, id?: number, name?: string, }, userId?: number, }, }
Added endpoints

POST /auth/upgrade

Trade in your token from the legacy token for a session

Request Body
{
  token?: string,
}
Response Body
{
  data: {
    family?: List<{
      id?: number,
      image: {
        default?: string,
        large?: string,
        medium?: string,
        small?: string,
      },
      nickname?: string,
    }>,
    guid?: string,
    jwt?: string,
    mongoId?: string,
    plan: {
      features?: record,
      id?: number,
      name?: string,
    },
    userId?: number,
  },
}
WORK IN PROGRESS