LocalNotionApi Starting: Sun May 24 10:24:33 PM UTC 2026 Listing Environment... ADMIN_EMAIL=administrator@localnotion.net ADMIN_PASSWORD=DesmondMiles DB_HOST=localhost DB_NAME=ln-main DB_PASSWORD=SumSumRulz! DB_PORT=5432 DB_USERNAME=morty FIREBASE_SERVICE_ACCOUNT_PATH=/opt/localnotion/.firebase-account.json FIREBASE_STORAGE_BUCKET=localnotion-faloha.firebasestorage.app HOME=/opt/localnotion INVOCATION_ID=79661e503c924be4a58164039c603e3d JOURNAL_STREAM=9:125924 LANG=en_US.UTF-8 LN_HOME=/opt/localnotion LN_LOGS=/usr/share/nginx/html/ln-logs LOGNAME=morty NODE_ENV=development PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/var/lib/snapd/snap/bin:/opt/localnotion/bin POSTMARK_API_KEY=a94aef7a-b5db-442b-913d-940a54299a0d PWD=/opt/localnotion/ln-api SHELL=/bin/bash SHLVL=1 SYSTEMD_EXEC_PID=5279 USER=morty _=/usr/bin/env Listing Environment Finished [Nest] 5286 - 05/24/2026, 10:24:35 PM  LOG [NestFactory] Starting Nest application... [Nest] 5286 - 05/24/2026, 10:24:35 PM  LOG [InstanceLoader] TypeOrmModule dependencies initialized +79ms [Nest] 5286 - 05/24/2026, 10:24:35 PM  LOG [InstanceLoader] ConfigHostModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] ConfigModule dependencies initialized +445ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] FirebaseModule dependencies initialized +62ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] AppModule dependencies initialized +1ms query: SELECT version() query: SELECT * FROM current_schema() query: CREATE EXTENSION IF NOT EXISTS "uuid-ossp" query: START TRANSACTION query: SELECT * FROM current_schema() query: SELECT * FROM current_database() query: SELECT "table_schema", "table_name", obj_description(('"' || "table_schema" || '"."' || "table_name" || '"')::regclass, 'pg_class') AS table_comment FROM "information_schema"."tables" WHERE ("table_schema" = 'public' AND "table_name" = 'clients') OR ("table_schema" = 'public' AND "table_name" = 'users') OR ("table_schema" = 'public' AND "table_name" = 'pools') OR ("table_schema" = 'public' AND "table_name" = 'products') OR ("table_schema" = 'public' AND "table_name" = 'items') OR ("table_schema" = 'public' AND "table_name" = 'reservations') OR ("table_schema" = 'public' AND "table_name" = 'product_groups') OR ("table_schema" = 'public' AND "table_name" = 'product_group_products') query: SELECT TRUE FROM information_schema.columns WHERE table_name = 'pg_class' and column_name = 'relispartition' query: SELECT columns.*, pg_catalog.col_description(('"' || table_catalog || '"."' || table_schema || '"."' || table_name || '"')::regclass::oid, ordinal_position) AS description, ('"' || "udt_schema" || '"."' || "udt_name" || '"')::"regtype"::text AS "regtype", pg_catalog.format_type("col_attr"."atttypid", "col_attr"."atttypmod") AS "format_type" FROM "information_schema"."columns" LEFT JOIN "pg_catalog"."pg_attribute" AS "col_attr" ON "col_attr"."attname" = "columns"."column_name" AND "col_attr"."attrelid" = ( SELECT "cls"."oid" FROM "pg_catalog"."pg_class" AS "cls" LEFT JOIN "pg_catalog"."pg_namespace" AS "ns" ON "ns"."oid" = "cls"."relnamespace" WHERE "cls"."relname" = "columns"."table_name" AND "ns"."nspname" = "columns"."table_schema" ) WHERE ("table_schema" = 'public' AND "table_name" = 'clients') OR ("table_schema" = 'public' AND "table_name" = 'users') OR ("table_schema" = 'public' AND "table_name" = 'pools') OR ("table_schema" = 'public' AND "table_name" = 'products') OR ("table_schema" = 'public' AND "table_name" = 'items') OR ("table_schema" = 'public' AND "table_name" = 'reservations') OR ("table_schema" = 'public' AND "table_name" = 'product_groups') OR ("table_schema" = 'public' AND "table_name" = 'product_group_products') query: SELECT "ns"."nspname" AS "table_schema", "t"."relname" AS "table_name", "cnst"."conname" AS "constraint_name", pg_get_constraintdef("cnst"."oid") AS "expression", CASE "cnst"."contype" WHEN 'p' THEN 'PRIMARY' WHEN 'u' THEN 'UNIQUE' WHEN 'c' THEN 'CHECK' WHEN 'x' THEN 'EXCLUDE' END AS "constraint_type", "a"."attname" AS "column_name" FROM "pg_constraint" "cnst" INNER JOIN "pg_class" "t" ON "t"."oid" = "cnst"."conrelid" INNER JOIN "pg_namespace" "ns" ON "ns"."oid" = "cnst"."connamespace" LEFT JOIN "pg_attribute" "a" ON "a"."attrelid" = "cnst"."conrelid" AND "a"."attnum" = ANY ("cnst"."conkey") WHERE "t"."relkind" IN ('r', 'p') AND (("ns"."nspname" = 'public' AND "t"."relname" = 'clients') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'users') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'pools') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'products') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'items') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'reservations') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'product_groups') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'product_group_products')) query: SELECT "ns"."nspname" AS "table_schema", "t"."relname" AS "table_name", "i"."relname" AS "constraint_name", "a"."attname" AS "column_name", CASE "ix"."indisunique" WHEN 't' THEN 'TRUE' ELSE'FALSE' END AS "is_unique", pg_get_expr("ix"."indpred", "ix"."indrelid") AS "condition", "types"."typname" AS "type_name", "am"."amname" AS "index_type" FROM "pg_class" "t" INNER JOIN "pg_index" "ix" ON "ix"."indrelid" = "t"."oid" INNER JOIN "pg_attribute" "a" ON "a"."attrelid" = "t"."oid" AND "a"."attnum" = ANY ("ix"."indkey") INNER JOIN "pg_namespace" "ns" ON "ns"."oid" = "t"."relnamespace" INNER JOIN "pg_class" "i" ON "i"."oid" = "ix"."indexrelid" INNER JOIN "pg_type" "types" ON "types"."oid" = "a"."atttypid" INNER JOIN "pg_am" "am" ON "i"."relam" = "am"."oid" LEFT JOIN "pg_constraint" "cnst" ON "cnst"."conname" = "i"."relname" WHERE "t"."relkind" IN ('r', 'p') AND "cnst"."contype" IS NULL AND (("ns"."nspname" = 'public' AND "t"."relname" = 'clients') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'users') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'pools') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'products') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'items') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'reservations') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'product_groups') OR ("ns"."nspname" = 'public' AND "t"."relname" = 'product_group_products')) query: SELECT "con"."conname" AS "constraint_name", "con"."nspname" AS "table_schema", "con"."relname" AS "table_name", "att2"."attname" AS "column_name", "ns"."nspname" AS "referenced_table_schema", "cl"."relname" AS "referenced_table_name", "att"."attname" AS "referenced_column_name", "con"."confdeltype" AS "on_delete", "con"."confupdtype" AS "on_update", "con"."condeferrable" AS "deferrable", "con"."condeferred" AS "deferred" FROM ( SELECT UNNEST ("con1"."conkey") AS "parent", UNNEST ("con1"."confkey") AS "child", "con1"."confrelid", "con1"."conrelid", "con1"."conname", "con1"."contype", "ns"."nspname", "cl"."relname", "con1"."condeferrable", CASE WHEN "con1"."condeferred" THEN 'INITIALLY DEFERRED' ELSE 'INITIALLY IMMEDIATE' END as condeferred, CASE "con1"."confdeltype" WHEN 'a' THEN 'NO ACTION' WHEN 'r' THEN 'RESTRICT' WHEN 'c' THEN 'CASCADE' WHEN 'n' THEN 'SET NULL' WHEN 'd' THEN 'SET DEFAULT' END as "confdeltype", CASE "con1"."confupdtype" WHEN 'a' THEN 'NO ACTION' WHEN 'r' THEN 'RESTRICT' WHEN 'c' THEN 'CASCADE' WHEN 'n' THEN 'SET NULL' WHEN 'd' THEN 'SET DEFAULT' END as "confupdtype" FROM "pg_class" "cl" INNER JOIN "pg_namespace" "ns" ON "cl"."relnamespace" = "ns"."oid" INNER JOIN "pg_constraint" "con1" ON "con1"."conrelid" = "cl"."oid" WHERE "con1"."contype" = 'f' AND (("ns"."nspname" = 'public' AND "cl"."relname" = 'clients') OR ("ns"."nspname" = 'public' AND "cl"."relname" = 'users') OR ("ns"."nspname" = 'public' AND "cl"."relname" = 'pools') OR ("ns"."nspname" = 'public' AND "cl"."relname" = 'products') OR ("ns"."nspname" = 'public' AND "cl"."relname" = 'items') OR ("ns"."nspname" = 'public' AND "cl"."relname" = 'reservations') OR ("ns"."nspname" = 'public' AND "cl"."relname" = 'product_groups') OR ("ns"."nspname" = 'public' AND "cl"."relname" = 'product_group_products')) ) "con" INNER JOIN "pg_attribute" "att" ON "att"."attrelid" = "con"."confrelid" AND "att"."attnum" = "con"."child" INNER JOIN "pg_class" "cl" ON "cl"."oid" = "con"."confrelid" AND "cl"."relispartition" = 'f'INNER JOIN "pg_namespace" "ns" ON "cl"."relnamespace" = "ns"."oid" INNER JOIN "pg_attribute" "att2" ON "att2"."attrelid" = "con"."conrelid" AND "att2"."attnum" = "con"."parent" (node:5286) DeprecationWarning: Calling client.query() when the client is already executing a query is deprecated and will be removed in pg@9.0. Use async/await or an external async flow control mechanism instead. (Use `node --trace-deprecation ...` to show where the warning was created) query: SELECT "udt_schema", "udt_name" FROM "information_schema"."columns" WHERE "table_schema" = 'public' AND "table_name" = 'users' AND "column_name"='role' query: SELECT "udt_schema", "udt_name" FROM "information_schema"."columns" WHERE "table_schema" = 'public' AND "table_name" = 'pools' AND "column_name"='tracking_type' query: SELECT "udt_schema", "udt_name" FROM "information_schema"."columns" WHERE "table_schema" = 'public' AND "table_name" = 'products' AND "column_name"='duration_type' query: SELECT "udt_schema", "udt_name" FROM "information_schema"."columns" WHERE "table_schema" = 'public' AND "table_name" = 'items' AND "column_name"='status' query: SELECT "udt_schema", "udt_name" FROM "information_schema"."columns" WHERE "table_schema" = 'public' AND "table_name" = 'reservations' AND "column_name"='status' query: SELECT "e"."enumlabel" AS "value" FROM "pg_enum" "e" INNER JOIN "pg_type" "t" ON "t"."oid" = "e"."enumtypid" INNER JOIN "pg_namespace" "n" ON "n"."oid" = "t"."typnamespace" WHERE "n"."nspname" = 'public' AND "t"."typname" = 'users_role_enum' query: SELECT "e"."enumlabel" AS "value" FROM "pg_enum" "e" INNER JOIN "pg_type" "t" ON "t"."oid" = "e"."enumtypid" INNER JOIN "pg_namespace" "n" ON "n"."oid" = "t"."typnamespace" WHERE "n"."nspname" = 'public' AND "t"."typname" = 'pools_tracking_type_enum' query: SELECT "e"."enumlabel" AS "value" FROM "pg_enum" "e" INNER JOIN "pg_type" "t" ON "t"."oid" = "e"."enumtypid" INNER JOIN "pg_namespace" "n" ON "n"."oid" = "t"."typnamespace" WHERE "n"."nspname" = 'public' AND "t"."typname" = 'products_duration_type_enum' query: SELECT "e"."enumlabel" AS "value" FROM "pg_enum" "e" INNER JOIN "pg_type" "t" ON "t"."oid" = "e"."enumtypid" INNER JOIN "pg_namespace" "n" ON "n"."oid" = "t"."typnamespace" WHERE "n"."nspname" = 'public' AND "t"."typname" = 'items_status_enum' query: SELECT "e"."enumlabel" AS "value" FROM "pg_enum" "e" INNER JOIN "pg_type" "t" ON "t"."oid" = "e"."enumtypid" INNER JOIN "pg_namespace" "n" ON "n"."oid" = "t"."typnamespace" WHERE "n"."nspname" = 'public' AND "t"."typname" = 'reservations_status_enum' query: SELECT * FROM "information_schema"."tables" WHERE "table_schema" = 'public' AND "table_name" = 'typeorm_metadata' query: COMMIT [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] TypeOrmCoreModule dependencies initialized +329ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] AuthModule dependencies initialized +2ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] UsersModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] PoolsModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] ItemsModule dependencies initialized +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] ReservationsModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] ClientsModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] ProductsModule dependencies initialized +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] ProductGroupsModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [InstanceLoader] BookingModule dependencies initialized +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RoutesResolver] AuthController {/auth}: +283ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/auth/me, GET} route +11ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/auth/set-claim, POST} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RoutesResolver] UsersController {/users}: +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/users, POST} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/users/me, GET} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/users, GET} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/users/:id, GET} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/users/:id, PATCH} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/users/:id, DELETE} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RoutesResolver] ClientsController {/clients}: +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/clients, POST} route +2ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/clients, GET} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/clients/slug/:slug, GET} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/clients/:id, GET} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/clients/:id, PATCH} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/clients/:id, DELETE} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RoutesResolver] PoolsController {/pools}: +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/pools, POST} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/pools, GET} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/pools/:id/availability, GET} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/pools/:id, GET} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/pools/:id, PATCH} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/pools/:id, DELETE} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RoutesResolver] ItemsController {/items}: +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/items, POST} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/items, GET} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/items/pool/:poolId, GET} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/items/:id, GET} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/items/:id, PATCH} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/items/:id, DELETE} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RoutesResolver] ProductsController {/products}: +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/products, POST} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/products, GET} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/products/slug/:slug, GET} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/products/:id, GET} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/products/:id, PATCH} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/products/:id, DELETE} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RoutesResolver] ProductGroupsController {/product-groups}: +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/product-groups, POST} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/product-groups, GET} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/product-groups/slug/:slug, GET} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/product-groups/:id, GET} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/product-groups/:id, PATCH} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/product-groups/:id/products, POST} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/product-groups/:id/products, DELETE} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/product-groups/:id, DELETE} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RoutesResolver] ReservationsController {/reservations}: +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/reservations, POST} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/reservations/my, GET} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/reservations, GET} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/reservations/:id, GET} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/reservations/:id, PATCH} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/reservations/:id/status, PATCH} route +6ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/reservations/:id, DELETE} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RoutesResolver] BookingController {/booking/:clientSlug}: +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/booking/:clientSlug/products, GET} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/booking/:clientSlug/products/:productSlug, GET} route +1ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/booking/:clientSlug/products/:productSlug/availability, GET} route +0ms [Nest] 5286 - 05/24/2026, 10:24:36 PM  LOG [RouterExplorer] Mapped {/booking/:clientSlug/reservation/:id, GET} route +1ms query: SELECT "UserEntity"."id" AS "UserEntity_id", "UserEntity"."uid" AS "UserEntity_uid", "UserEntity"."name" AS "UserEntity_name", "UserEntity"."email" AS "UserEntity_email", "UserEntity"."role" AS "UserEntity_role", "UserEntity"."access" AS "UserEntity_access", "UserEntity"."client_id" AS "UserEntity_client_id", "UserEntity"."created_at" AS "UserEntity_created_at", "UserEntity"."updated_at" AS "UserEntity_updated_at" FROM "users" "UserEntity" WHERE (("UserEntity"."uid" = $1)) LIMIT 1 -- PARAMETERS: ["bQ6I2f1aBvaV8IJc0QaPDsx2sd92"] [Nest] 5286 - 05/24/2026, 10:24:37 PM  LOG [AuthService] Admin bootstrap complete [Nest] 5286 - 05/24/2026, 10:24:37 PM  LOG [NestApplication] Nest application successfully started +6ms