import { normalizePreviewPlaform } from "../models/preview-platform"; import { normalizeAdamID } from "../util"; export const SEE_ALL_TYPES = ["reviews", "customers-also-bought-apps", "developer-other-apps"]; export function makeSeeAllPageIntent(opts) { return { ...opts, "$kind": "SeeAllPageIntent", "id": normalizeAdamID(opts.id), "platform": normalizePreviewPlaform(opts.platform), "see-all": opts["see-all"], }; } //# sourceMappingURL=see-all-page-intent.js.map