Files
web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/sasUtils.ts
Anton Gunnarsson 340f6d1714 Merged in feat/SW-1488-unlink-sas-account (pull request #1349)
Implement unlink SAS flow

Approved-by: Joakim Jäderberg
2025-02-20 15:09:06 +00:00

9 lines
212 B
TypeScript

import { z } from "zod"
export const SAS_TOKEN_STORAGE_KEY = "sas-x-scandic-token"
export const stateSchema = z.object({
intent: z.enum(["link", "unlink"]),
})
export type State = z.infer<typeof stateSchema>