export type GetSlotCollectionsProps = {
slotId: string;
includeDeactivated?: boolean; // if true, response includes deactivated collections
};
const collectionIds = await assetlayer.slots.getSlotCollections({
slotId: 'slotId'
});
type ReturnType = string[];