Interface OrderMapSectionsInput

interface OrderMapSectionsInput {
    roomSlug: string;
    sectionMoved?: {
        movedSlug: string;
        movedTitle: string;
        toBelow?: {
            slug: string;
            title: string;
        };
    };
    sectionSlugs: string[];
}

Properties

roomSlug: string
sectionMoved?: {
    movedSlug: string;
    movedTitle: string;
    toBelow?: {
        slug: string;
        title: string;
    };
}

If a single section was moved, include its details for logging purposes. Record the slug and title of the section that was moved, and the slug and title of the section that it was moved to below. Omit toBelow if the section was moved to the top of the list.

sectionSlugs: string[]

The slugs of the MAP Sections, in the order they should be displayed