diff --git a/.gitignore b/.gitignore index 477123c..8c978b7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -@" node_modules/ .env .env.* @@ -6,6 +5,13 @@ dist/ build/ .next/ coverage/ + +# Generated/runtime files +.react-router/ +.shopify/ +prisma/dev.sqlite +*.log + npm-debug.log* yarn-debug.log* yarn-error.log* @@ -13,4 +19,3 @@ yarn-error.log* Thumbs.db .vscode/ .idea/ -"@ | Out-File -Encoding utf8 .gitignore \ No newline at end of file diff --git a/.react-router/types/+future.ts b/.react-router/types/+future.ts deleted file mode 100644 index 7f4533c..0000000 --- a/.react-router/types/+future.ts +++ /dev/null @@ -1,9 +0,0 @@ -// Generated by React Router - -import "react-router"; - -declare module "react-router" { - interface Future { - v8_middleware: false - } -} \ No newline at end of file diff --git a/.react-router/types/+routes.ts b/.react-router/types/+routes.ts deleted file mode 100644 index 47b26a5..0000000 --- a/.react-router/types/+routes.ts +++ /dev/null @@ -1,88 +0,0 @@ -// Generated by React Router - -import "react-router" - -declare module "react-router" { - interface Register { - pages: Pages - routeFiles: RouteFiles - routeModules: RouteModules - } -} - -type Pages = { - "/": { - params: {}; - }; - "/webhooks/app/scopes_update": { - params: {}; - }; - "/webhooks/app/uninstalled": { - params: {}; - }; - "/auth/login": { - params: {}; - }; - "/auth/*": { - params: { - "*": string; - }; - }; - "/app": { - params: {}; - }; - "/app/additional": { - params: {}; - }; -}; - -type RouteFiles = { - "root.jsx": { - id: "root"; - page: "/" | "/webhooks/app/scopes_update" | "/webhooks/app/uninstalled" | "/auth/login" | "/auth/*" | "/app" | "/app/additional"; - }; - "routes/webhooks.app.scopes_update.jsx": { - id: "routes/webhooks.app.scopes_update"; - page: "/webhooks/app/scopes_update"; - }; - "routes/webhooks.app.uninstalled.jsx": { - id: "routes/webhooks.app.uninstalled"; - page: "/webhooks/app/uninstalled"; - }; - "routes/auth.login/route.jsx": { - id: "routes/auth.login"; - page: "/auth/login"; - }; - "routes/auth.$.jsx": { - id: "routes/auth.$"; - page: "/auth/*"; - }; - "routes/_index/route.jsx": { - id: "routes/_index"; - page: "/"; - }; - "routes/app.jsx": { - id: "routes/app"; - page: "/app" | "/app/additional"; - }; - "routes/app.additional.jsx": { - id: "routes/app.additional"; - page: "/app/additional"; - }; - "routes/app._index.jsx": { - id: "routes/app._index"; - page: "/app"; - }; -}; - -type RouteModules = { - "root": typeof import("./app/root.jsx"); - "routes/webhooks.app.scopes_update": typeof import("./app/routes/webhooks.app.scopes_update.jsx"); - "routes/webhooks.app.uninstalled": typeof import("./app/routes/webhooks.app.uninstalled.jsx"); - "routes/auth.login": typeof import("./app/routes/auth.login/route.jsx"); - "routes/auth.$": typeof import("./app/routes/auth.$.jsx"); - "routes/_index": typeof import("./app/routes/_index/route.jsx"); - "routes/app": typeof import("./app/routes/app.jsx"); - "routes/app.additional": typeof import("./app/routes/app.additional.jsx"); - "routes/app._index": typeof import("./app/routes/app._index.jsx"); -}; \ No newline at end of file diff --git a/.react-router/types/+server-build.d.ts b/.react-router/types/+server-build.d.ts deleted file mode 100644 index 13792c1..0000000 --- a/.react-router/types/+server-build.d.ts +++ /dev/null @@ -1,18 +0,0 @@ -// Generated by React Router - -declare module "virtual:react-router/server-build" { - import { ServerBuild } from "react-router"; - export const assets: ServerBuild["assets"]; - export const assetsBuildDirectory: ServerBuild["assetsBuildDirectory"]; - export const basename: ServerBuild["basename"]; - export const entry: ServerBuild["entry"]; - export const future: ServerBuild["future"]; - export const isSpaMode: ServerBuild["isSpaMode"]; - export const prerender: ServerBuild["prerender"]; - export const publicPath: ServerBuild["publicPath"]; - export const routeDiscovery: ServerBuild["routeDiscovery"]; - export const routes: ServerBuild["routes"]; - export const ssr: ServerBuild["ssr"]; - export const allowedActionOrigins: ServerBuild["allowedActionOrigins"]; - export const unstable_getCriticalCss: ServerBuild["unstable_getCriticalCss"]; -} \ No newline at end of file diff --git a/.react-router/types/app/+types/root.ts b/.react-router/types/app/+types/root.ts deleted file mode 100644 index f79b35c..0000000 --- a/.react-router/types/app/+types/root.ts +++ /dev/null @@ -1,68 +0,0 @@ -// Generated by React Router - -import type { GetInfo, GetAnnotations } from "react-router/internal"; - -type Module = typeof import("../root.js") - -type Info = GetInfo<{ - file: "root.jsx", - module: Module -}> - -type Matches = [{ - id: "root"; - module: typeof import("../root.js"); -}]; - -type Annotations = GetAnnotations; - -export namespace Route { - // links - export type LinkDescriptors = Annotations["LinkDescriptors"]; - export type LinksFunction = Annotations["LinksFunction"]; - - // meta - export type MetaArgs = Annotations["MetaArgs"]; - export type MetaDescriptors = Annotations["MetaDescriptors"]; - export type MetaFunction = Annotations["MetaFunction"]; - - // headers - export type HeadersArgs = Annotations["HeadersArgs"]; - export type HeadersFunction = Annotations["HeadersFunction"]; - - // middleware - export type MiddlewareFunction = Annotations["MiddlewareFunction"]; - - // clientMiddleware - export type ClientMiddlewareFunction = Annotations["ClientMiddlewareFunction"]; - - // loader - export type LoaderArgs = Annotations["LoaderArgs"]; - - // clientLoader - export type ClientLoaderArgs = Annotations["ClientLoaderArgs"]; - - // action - export type ActionArgs = Annotations["ActionArgs"]; - - // clientAction - export type ClientActionArgs = Annotations["ClientActionArgs"]; - - // HydrateFallback - export type HydrateFallbackProps = Annotations["HydrateFallbackProps"]; - - // ServerHydrateFallback - export type ServerHydrateFallbackProps = Annotations["ServerHydrateFallbackProps"]; - - // Component - export type ComponentProps = Annotations["ComponentProps"]; - - // ServerComponent - export type ServerComponentProps = Annotations["ServerComponentProps"]; - - // ErrorBoundary - export type ErrorBoundaryProps = Annotations["ErrorBoundaryProps"]; - - // ServerErrorBoundary - export type ServerErrorBoundaryProps = Annotations["ServerErrorBoundaryProps"]; -} \ No newline at end of file diff --git a/.react-router/types/app/routes/+types/app._index.ts b/.react-router/types/app/routes/+types/app._index.ts deleted file mode 100644 index b003d13..0000000 --- a/.react-router/types/app/routes/+types/app._index.ts +++ /dev/null @@ -1,74 +0,0 @@ -// Generated by React Router - -import type { GetInfo, GetAnnotations } from "react-router/internal"; - -type Module = typeof import("../app._index.js") - -type Info = GetInfo<{ - file: "routes/app._index.jsx", - module: Module -}> - -type Matches = [{ - id: "root"; - module: typeof import("../../root.js"); -}, { - id: "routes/app"; - module: typeof import("../app.js"); -}, { - id: "routes/app._index"; - module: typeof import("../app._index.js"); -}]; - -type Annotations = GetAnnotations; - -export namespace Route { - // links - export type LinkDescriptors = Annotations["LinkDescriptors"]; - export type LinksFunction = Annotations["LinksFunction"]; - - // meta - export type MetaArgs = Annotations["MetaArgs"]; - export type MetaDescriptors = Annotations["MetaDescriptors"]; - export type MetaFunction = Annotations["MetaFunction"]; - - // headers - export type HeadersArgs = Annotations["HeadersArgs"]; - export type HeadersFunction = Annotations["HeadersFunction"]; - - // middleware - export type MiddlewareFunction = Annotations["MiddlewareFunction"]; - - // clientMiddleware - export type ClientMiddlewareFunction = Annotations["ClientMiddlewareFunction"]; - - // loader - export type LoaderArgs = Annotations["LoaderArgs"]; - - // clientLoader - export type ClientLoaderArgs = Annotations["ClientLoaderArgs"]; - - // action - export type ActionArgs = Annotations["ActionArgs"]; - - // clientAction - export type ClientActionArgs = Annotations["ClientActionArgs"]; - - // HydrateFallback - export type HydrateFallbackProps = Annotations["HydrateFallbackProps"]; - - // ServerHydrateFallback - export type ServerHydrateFallbackProps = Annotations["ServerHydrateFallbackProps"]; - - // Component - export type ComponentProps = Annotations["ComponentProps"]; - - // ServerComponent - export type ServerComponentProps = Annotations["ServerComponentProps"]; - - // ErrorBoundary - export type ErrorBoundaryProps = Annotations["ErrorBoundaryProps"]; - - // ServerErrorBoundary - export type ServerErrorBoundaryProps = Annotations["ServerErrorBoundaryProps"]; -} \ No newline at end of file diff --git a/.react-router/types/app/routes/+types/app.additional.ts b/.react-router/types/app/routes/+types/app.additional.ts deleted file mode 100644 index dd51f3d..0000000 --- a/.react-router/types/app/routes/+types/app.additional.ts +++ /dev/null @@ -1,74 +0,0 @@ -// Generated by React Router - -import type { GetInfo, GetAnnotations } from "react-router/internal"; - -type Module = typeof import("../app.additional.js") - -type Info = GetInfo<{ - file: "routes/app.additional.jsx", - module: Module -}> - -type Matches = [{ - id: "root"; - module: typeof import("../../root.js"); -}, { - id: "routes/app"; - module: typeof import("../app.js"); -}, { - id: "routes/app.additional"; - module: typeof import("../app.additional.js"); -}]; - -type Annotations = GetAnnotations; - -export namespace Route { - // links - export type LinkDescriptors = Annotations["LinkDescriptors"]; - export type LinksFunction = Annotations["LinksFunction"]; - - // meta - export type MetaArgs = Annotations["MetaArgs"]; - export type MetaDescriptors = Annotations["MetaDescriptors"]; - export type MetaFunction = Annotations["MetaFunction"]; - - // headers - export type HeadersArgs = Annotations["HeadersArgs"]; - export type HeadersFunction = Annotations["HeadersFunction"]; - - // middleware - export type MiddlewareFunction = Annotations["MiddlewareFunction"]; - - // clientMiddleware - export type ClientMiddlewareFunction = Annotations["ClientMiddlewareFunction"]; - - // loader - export type LoaderArgs = Annotations["LoaderArgs"]; - - // clientLoader - export type ClientLoaderArgs = Annotations["ClientLoaderArgs"]; - - // action - export type ActionArgs = Annotations["ActionArgs"]; - - // clientAction - export type ClientActionArgs = Annotations["ClientActionArgs"]; - - // HydrateFallback - export type HydrateFallbackProps = Annotations["HydrateFallbackProps"]; - - // ServerHydrateFallback - export type ServerHydrateFallbackProps = Annotations["ServerHydrateFallbackProps"]; - - // Component - export type ComponentProps = Annotations["ComponentProps"]; - - // ServerComponent - export type ServerComponentProps = Annotations["ServerComponentProps"]; - - // ErrorBoundary - export type ErrorBoundaryProps = Annotations["ErrorBoundaryProps"]; - - // ServerErrorBoundary - export type ServerErrorBoundaryProps = Annotations["ServerErrorBoundaryProps"]; -} \ No newline at end of file diff --git a/.react-router/types/app/routes/+types/app.ts b/.react-router/types/app/routes/+types/app.ts deleted file mode 100644 index dc4f323..0000000 --- a/.react-router/types/app/routes/+types/app.ts +++ /dev/null @@ -1,71 +0,0 @@ -// Generated by React Router - -import type { GetInfo, GetAnnotations } from "react-router/internal"; - -type Module = typeof import("../app.js") - -type Info = GetInfo<{ - file: "routes/app.jsx", - module: Module -}> - -type Matches = [{ - id: "root"; - module: typeof import("../../root.js"); -}, { - id: "routes/app"; - module: typeof import("../app.js"); -}]; - -type Annotations = GetAnnotations; - -export namespace Route { - // links - export type LinkDescriptors = Annotations["LinkDescriptors"]; - export type LinksFunction = Annotations["LinksFunction"]; - - // meta - export type MetaArgs = Annotations["MetaArgs"]; - export type MetaDescriptors = Annotations["MetaDescriptors"]; - export type MetaFunction = Annotations["MetaFunction"]; - - // headers - export type HeadersArgs = Annotations["HeadersArgs"]; - export type HeadersFunction = Annotations["HeadersFunction"]; - - // middleware - export type MiddlewareFunction = Annotations["MiddlewareFunction"]; - - // clientMiddleware - export type ClientMiddlewareFunction = Annotations["ClientMiddlewareFunction"]; - - // loader - export type LoaderArgs = Annotations["LoaderArgs"]; - - // clientLoader - export type ClientLoaderArgs = Annotations["ClientLoaderArgs"]; - - // action - export type ActionArgs = Annotations["ActionArgs"]; - - // clientAction - export type ClientActionArgs = Annotations["ClientActionArgs"]; - - // HydrateFallback - export type HydrateFallbackProps = Annotations["HydrateFallbackProps"]; - - // ServerHydrateFallback - export type ServerHydrateFallbackProps = Annotations["ServerHydrateFallbackProps"]; - - // Component - export type ComponentProps = Annotations["ComponentProps"]; - - // ServerComponent - export type ServerComponentProps = Annotations["ServerComponentProps"]; - - // ErrorBoundary - export type ErrorBoundaryProps = Annotations["ErrorBoundaryProps"]; - - // ServerErrorBoundary - export type ServerErrorBoundaryProps = Annotations["ServerErrorBoundaryProps"]; -} \ No newline at end of file diff --git a/.react-router/types/app/routes/+types/auth.$.ts b/.react-router/types/app/routes/+types/auth.$.ts deleted file mode 100644 index 37d1e0a..0000000 --- a/.react-router/types/app/routes/+types/auth.$.ts +++ /dev/null @@ -1,71 +0,0 @@ -// Generated by React Router - -import type { GetInfo, GetAnnotations } from "react-router/internal"; - -type Module = typeof import("../auth.$.js") - -type Info = GetInfo<{ - file: "routes/auth.$.jsx", - module: Module -}> - -type Matches = [{ - id: "root"; - module: typeof import("../../root.js"); -}, { - id: "routes/auth.$"; - module: typeof import("../auth.$.js"); -}]; - -type Annotations = GetAnnotations; - -export namespace Route { - // links - export type LinkDescriptors = Annotations["LinkDescriptors"]; - export type LinksFunction = Annotations["LinksFunction"]; - - // meta - export type MetaArgs = Annotations["MetaArgs"]; - export type MetaDescriptors = Annotations["MetaDescriptors"]; - export type MetaFunction = Annotations["MetaFunction"]; - - // headers - export type HeadersArgs = Annotations["HeadersArgs"]; - export type HeadersFunction = Annotations["HeadersFunction"]; - - // middleware - export type MiddlewareFunction = Annotations["MiddlewareFunction"]; - - // clientMiddleware - export type ClientMiddlewareFunction = Annotations["ClientMiddlewareFunction"]; - - // loader - export type LoaderArgs = Annotations["LoaderArgs"]; - - // clientLoader - export type ClientLoaderArgs = Annotations["ClientLoaderArgs"]; - - // action - export type ActionArgs = Annotations["ActionArgs"]; - - // clientAction - export type ClientActionArgs = Annotations["ClientActionArgs"]; - - // HydrateFallback - export type HydrateFallbackProps = Annotations["HydrateFallbackProps"]; - - // ServerHydrateFallback - export type ServerHydrateFallbackProps = Annotations["ServerHydrateFallbackProps"]; - - // Component - export type ComponentProps = Annotations["ComponentProps"]; - - // ServerComponent - export type ServerComponentProps = Annotations["ServerComponentProps"]; - - // ErrorBoundary - export type ErrorBoundaryProps = Annotations["ErrorBoundaryProps"]; - - // ServerErrorBoundary - export type ServerErrorBoundaryProps = Annotations["ServerErrorBoundaryProps"]; -} \ No newline at end of file diff --git a/.react-router/types/app/routes/+types/webhooks.app.scopes_update.ts b/.react-router/types/app/routes/+types/webhooks.app.scopes_update.ts deleted file mode 100644 index 454da51..0000000 --- a/.react-router/types/app/routes/+types/webhooks.app.scopes_update.ts +++ /dev/null @@ -1,71 +0,0 @@ -// Generated by React Router - -import type { GetInfo, GetAnnotations } from "react-router/internal"; - -type Module = typeof import("../webhooks.app.scopes_update.js") - -type Info = GetInfo<{ - file: "routes/webhooks.app.scopes_update.jsx", - module: Module -}> - -type Matches = [{ - id: "root"; - module: typeof import("../../root.js"); -}, { - id: "routes/webhooks.app.scopes_update"; - module: typeof import("../webhooks.app.scopes_update.js"); -}]; - -type Annotations = GetAnnotations; - -export namespace Route { - // links - export type LinkDescriptors = Annotations["LinkDescriptors"]; - export type LinksFunction = Annotations["LinksFunction"]; - - // meta - export type MetaArgs = Annotations["MetaArgs"]; - export type MetaDescriptors = Annotations["MetaDescriptors"]; - export type MetaFunction = Annotations["MetaFunction"]; - - // headers - export type HeadersArgs = Annotations["HeadersArgs"]; - export type HeadersFunction = Annotations["HeadersFunction"]; - - // middleware - export type MiddlewareFunction = Annotations["MiddlewareFunction"]; - - // clientMiddleware - export type ClientMiddlewareFunction = Annotations["ClientMiddlewareFunction"]; - - // loader - export type LoaderArgs = Annotations["LoaderArgs"]; - - // clientLoader - export type ClientLoaderArgs = Annotations["ClientLoaderArgs"]; - - // action - export type ActionArgs = Annotations["ActionArgs"]; - - // clientAction - export type ClientActionArgs = Annotations["ClientActionArgs"]; - - // HydrateFallback - export type HydrateFallbackProps = Annotations["HydrateFallbackProps"]; - - // ServerHydrateFallback - export type ServerHydrateFallbackProps = Annotations["ServerHydrateFallbackProps"]; - - // Component - export type ComponentProps = Annotations["ComponentProps"]; - - // ServerComponent - export type ServerComponentProps = Annotations["ServerComponentProps"]; - - // ErrorBoundary - export type ErrorBoundaryProps = Annotations["ErrorBoundaryProps"]; - - // ServerErrorBoundary - export type ServerErrorBoundaryProps = Annotations["ServerErrorBoundaryProps"]; -} \ No newline at end of file diff --git a/.react-router/types/app/routes/+types/webhooks.app.uninstalled.ts b/.react-router/types/app/routes/+types/webhooks.app.uninstalled.ts deleted file mode 100644 index 892713b..0000000 --- a/.react-router/types/app/routes/+types/webhooks.app.uninstalled.ts +++ /dev/null @@ -1,71 +0,0 @@ -// Generated by React Router - -import type { GetInfo, GetAnnotations } from "react-router/internal"; - -type Module = typeof import("../webhooks.app.uninstalled.js") - -type Info = GetInfo<{ - file: "routes/webhooks.app.uninstalled.jsx", - module: Module -}> - -type Matches = [{ - id: "root"; - module: typeof import("../../root.js"); -}, { - id: "routes/webhooks.app.uninstalled"; - module: typeof import("../webhooks.app.uninstalled.js"); -}]; - -type Annotations = GetAnnotations; - -export namespace Route { - // links - export type LinkDescriptors = Annotations["LinkDescriptors"]; - export type LinksFunction = Annotations["LinksFunction"]; - - // meta - export type MetaArgs = Annotations["MetaArgs"]; - export type MetaDescriptors = Annotations["MetaDescriptors"]; - export type MetaFunction = Annotations["MetaFunction"]; - - // headers - export type HeadersArgs = Annotations["HeadersArgs"]; - export type HeadersFunction = Annotations["HeadersFunction"]; - - // middleware - export type MiddlewareFunction = Annotations["MiddlewareFunction"]; - - // clientMiddleware - export type ClientMiddlewareFunction = Annotations["ClientMiddlewareFunction"]; - - // loader - export type LoaderArgs = Annotations["LoaderArgs"]; - - // clientLoader - export type ClientLoaderArgs = Annotations["ClientLoaderArgs"]; - - // action - export type ActionArgs = Annotations["ActionArgs"]; - - // clientAction - export type ClientActionArgs = Annotations["ClientActionArgs"]; - - // HydrateFallback - export type HydrateFallbackProps = Annotations["HydrateFallbackProps"]; - - // ServerHydrateFallback - export type ServerHydrateFallbackProps = Annotations["ServerHydrateFallbackProps"]; - - // Component - export type ComponentProps = Annotations["ComponentProps"]; - - // ServerComponent - export type ServerComponentProps = Annotations["ServerComponentProps"]; - - // ErrorBoundary - export type ErrorBoundaryProps = Annotations["ErrorBoundaryProps"]; - - // ServerErrorBoundary - export type ServerErrorBoundaryProps = Annotations["ServerErrorBoundaryProps"]; -} \ No newline at end of file diff --git a/.react-router/types/app/routes/_index/+types/route.ts b/.react-router/types/app/routes/_index/+types/route.ts deleted file mode 100644 index 72808cd..0000000 --- a/.react-router/types/app/routes/_index/+types/route.ts +++ /dev/null @@ -1,71 +0,0 @@ -// Generated by React Router - -import type { GetInfo, GetAnnotations } from "react-router/internal"; - -type Module = typeof import("../route.js") - -type Info = GetInfo<{ - file: "routes/_index/route.jsx", - module: Module -}> - -type Matches = [{ - id: "root"; - module: typeof import("../../../root.js"); -}, { - id: "routes/_index"; - module: typeof import("../route.js"); -}]; - -type Annotations = GetAnnotations; - -export namespace Route { - // links - export type LinkDescriptors = Annotations["LinkDescriptors"]; - export type LinksFunction = Annotations["LinksFunction"]; - - // meta - export type MetaArgs = Annotations["MetaArgs"]; - export type MetaDescriptors = Annotations["MetaDescriptors"]; - export type MetaFunction = Annotations["MetaFunction"]; - - // headers - export type HeadersArgs = Annotations["HeadersArgs"]; - export type HeadersFunction = Annotations["HeadersFunction"]; - - // middleware - export type MiddlewareFunction = Annotations["MiddlewareFunction"]; - - // clientMiddleware - export type ClientMiddlewareFunction = Annotations["ClientMiddlewareFunction"]; - - // loader - export type LoaderArgs = Annotations["LoaderArgs"]; - - // clientLoader - export type ClientLoaderArgs = Annotations["ClientLoaderArgs"]; - - // action - export type ActionArgs = Annotations["ActionArgs"]; - - // clientAction - export type ClientActionArgs = Annotations["ClientActionArgs"]; - - // HydrateFallback - export type HydrateFallbackProps = Annotations["HydrateFallbackProps"]; - - // ServerHydrateFallback - export type ServerHydrateFallbackProps = Annotations["ServerHydrateFallbackProps"]; - - // Component - export type ComponentProps = Annotations["ComponentProps"]; - - // ServerComponent - export type ServerComponentProps = Annotations["ServerComponentProps"]; - - // ErrorBoundary - export type ErrorBoundaryProps = Annotations["ErrorBoundaryProps"]; - - // ServerErrorBoundary - export type ServerErrorBoundaryProps = Annotations["ServerErrorBoundaryProps"]; -} \ No newline at end of file diff --git a/.react-router/types/app/routes/auth.login/+types/route.ts b/.react-router/types/app/routes/auth.login/+types/route.ts deleted file mode 100644 index 2ecf821..0000000 --- a/.react-router/types/app/routes/auth.login/+types/route.ts +++ /dev/null @@ -1,71 +0,0 @@ -// Generated by React Router - -import type { GetInfo, GetAnnotations } from "react-router/internal"; - -type Module = typeof import("../route.js") - -type Info = GetInfo<{ - file: "routes/auth.login/route.jsx", - module: Module -}> - -type Matches = [{ - id: "root"; - module: typeof import("../../../root.js"); -}, { - id: "routes/auth.login"; - module: typeof import("../route.js"); -}]; - -type Annotations = GetAnnotations; - -export namespace Route { - // links - export type LinkDescriptors = Annotations["LinkDescriptors"]; - export type LinksFunction = Annotations["LinksFunction"]; - - // meta - export type MetaArgs = Annotations["MetaArgs"]; - export type MetaDescriptors = Annotations["MetaDescriptors"]; - export type MetaFunction = Annotations["MetaFunction"]; - - // headers - export type HeadersArgs = Annotations["HeadersArgs"]; - export type HeadersFunction = Annotations["HeadersFunction"]; - - // middleware - export type MiddlewareFunction = Annotations["MiddlewareFunction"]; - - // clientMiddleware - export type ClientMiddlewareFunction = Annotations["ClientMiddlewareFunction"]; - - // loader - export type LoaderArgs = Annotations["LoaderArgs"]; - - // clientLoader - export type ClientLoaderArgs = Annotations["ClientLoaderArgs"]; - - // action - export type ActionArgs = Annotations["ActionArgs"]; - - // clientAction - export type ClientActionArgs = Annotations["ClientActionArgs"]; - - // HydrateFallback - export type HydrateFallbackProps = Annotations["HydrateFallbackProps"]; - - // ServerHydrateFallback - export type ServerHydrateFallbackProps = Annotations["ServerHydrateFallbackProps"]; - - // Component - export type ComponentProps = Annotations["ComponentProps"]; - - // ServerComponent - export type ServerComponentProps = Annotations["ServerComponentProps"]; - - // ErrorBoundary - export type ErrorBoundaryProps = Annotations["ErrorBoundaryProps"]; - - // ServerErrorBoundary - export type ServerErrorBoundaryProps = Annotations["ServerErrorBoundaryProps"]; -} \ No newline at end of file diff --git a/prisma/dev.sqlite b/prisma/dev.sqlite deleted file mode 100644 index 1dfdd16..0000000 Binary files a/prisma/dev.sqlite and /dev/null differ