from typing import Literal ShopifyStoreOrderBy = Literal[ "vendorId.asc", "vendorId.desc", "vendorId.asc.nullsFirst", "vendorId.desc.nullsFirst", "name.asc", "name.desc", "shopDomain.asc", "shopDomain.desc", "status.asc", "status.desc", "collectionsCount.asc", "collectionsCount.desc", "productsCount.asc", "productsCount.desc", "globalParticipantId.asc.nullsFirst", "globalParticipantId.desc.nullsFirst", "artistsCount.asc", "artistsCount.desc", "syncedAt.asc", "syncedAt.desc", ]