first commit

This commit is contained in:
Tomas Dvorak
2026-04-10 12:01:36 +02:00
commit 035ac8ddb5
61 changed files with 6600 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
{
"name": "@bookra/shared-types",
"version": "0.1.0",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts"
}
}
+16
View File
@@ -0,0 +1,16 @@
export const locales = ["cs", "en"] as const;
export type Locale = (typeof locales)[number];
export const defaultLocale: Locale = "cs";
export const tenantPresets = [
"salon",
"clinic",
"massage",
"repair",
"studio",
] as const;
export type TenantPreset = (typeof tenantPresets)[number];
export const planCodes = ["starter", "growth", "multi-location"] as const;
export type PlanCode = (typeof planCodes)[number];