UNPKG

@tmlmobilidade/types

Version:
21 lines (20 loc) 464 B
/* * */ import { z } from 'zod'; /* * */ export const StopsPermissionSchema = z.object({ action: z.enum([ 'create', 'delete', 'read', 'lock', 'update', 'export', 'edit_coordinates', 'edit_name', ]), resources: z.object({ agency_ids: z.array(z.string()).default([]), municipality_ids: z.array(z.string()).default([]), }).default({}), scope: z.literal('stops'), });