Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions .react-router/types/+routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,15 @@ type Pages = {
"/portal/troubleshooting": {
params: {};
};
"/portal/downloads": {
params: {};
};
"/portal/changelog": {
params: {};
};
"/portal/demo": {
params: {};
};
"/auth/github": {
params: {};
};
Expand All @@ -81,7 +90,7 @@ type Pages = {
type RouteFiles = {
"root.tsx": {
id: "root";
page: "/" | "/login" | "/signup" | "/dashboard" | "/ai-automation-for-smbs" | "/prompt-automation-templates" | "/checkout" | "/checkout/success" | "/checkout/cancel" | "/redeem" | "/portal" | "/portal/start" | "/portal/setup" | "/portal/seo" | "/portal/troubleshooting" | "/auth/github" | "/auth/github/callback" | "/auth/google" | "/auth/google/callback" | "/api/trpc/*" | "/api/stripe/webhook";
page: "/" | "/login" | "/signup" | "/dashboard" | "/ai-automation-for-smbs" | "/prompt-automation-templates" | "/checkout" | "/checkout/success" | "/checkout/cancel" | "/redeem" | "/portal" | "/portal/start" | "/portal/setup" | "/portal/seo" | "/portal/troubleshooting" | "/portal/downloads" | "/portal/changelog" | "/portal/demo" | "/auth/github" | "/auth/github/callback" | "/auth/google" | "/auth/google/callback" | "/api/trpc/*" | "/api/stripe/webhook";
};
"routes/home.tsx": {
id: "routes/home";
Expand Down Expand Up @@ -143,6 +152,18 @@ type RouteFiles = {
id: "routes/portal.troubleshooting";
page: "/portal/troubleshooting";
};
"routes/portal.downloads.tsx": {
id: "routes/portal.downloads";
page: "/portal/downloads";
};
"routes/portal.changelog.tsx": {
id: "routes/portal.changelog";
page: "/portal/changelog";
};
"routes/portal.demo.tsx": {
id: "routes/portal.demo";
page: "/portal/demo";
};
"routes/auth/github.tsx": {
id: "routes/auth/github";
page: "/auth/github";
Expand Down Expand Up @@ -186,10 +207,13 @@ type RouteModules = {
"routes/portal.setup": typeof import("./app/routes/portal.setup.tsx");
"routes/portal.seo": typeof import("./app/routes/portal.seo.tsx");
"routes/portal.troubleshooting": typeof import("./app/routes/portal.troubleshooting.tsx");
"routes/portal.downloads": typeof import("./app/routes/portal.downloads.tsx");
"routes/portal.changelog": typeof import("./app/routes/portal.changelog.tsx");
"routes/portal.demo": typeof import("./app/routes/portal.demo.tsx");
"routes/auth/github": typeof import("./app/routes/auth/github.tsx");
"routes/auth/github.callback": typeof import("./app/routes/auth/github.callback.tsx");
"routes/auth/google": typeof import("./app/routes/auth/google.tsx");
"routes/auth/google.callback": typeof import("./app/routes/auth/google.callback.tsx");
"routes/api.trpc.$": typeof import("./app/routes/api.trpc.$.tsx");
"routes/api.stripe.webhook": typeof import("./app/routes/api.stripe.webhook.tsx");
};
};
62 changes: 62 additions & 0 deletions .react-router/types/app/routes/+types/portal.changelog.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
// Generated by React Router

import type { GetInfo, GetAnnotations } from "react-router/internal";

type Module = typeof import("../portal.changelog.js")

type Info = GetInfo<{
file: "routes/portal.changelog.tsx",
module: Module
}>

type Matches = [{
id: "root";
module: typeof import("../../root.js");
}, {
id: "routes/portal.changelog";
module: typeof import("../portal.changelog.js");
}];

type Annotations = GetAnnotations<Info & { module: Module, matches: Matches }, false>;

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"];

// Component
export type ComponentProps = Annotations["ComponentProps"];

// ErrorBoundary
export type ErrorBoundaryProps = Annotations["ErrorBoundaryProps"];
}
62 changes: 62 additions & 0 deletions .react-router/types/app/routes/+types/portal.demo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
// Generated by React Router

import type { GetInfo, GetAnnotations } from "react-router/internal";

type Module = typeof import("../portal.demo.js")

type Info = GetInfo<{
file: "routes/portal.demo.tsx",
module: Module
}>

type Matches = [{
id: "root";
module: typeof import("../../root.js");
}, {
id: "routes/portal.demo";
module: typeof import("../portal.demo.js");
}];

type Annotations = GetAnnotations<Info & { module: Module, matches: Matches }, false>;

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"];

// Component
export type ComponentProps = Annotations["ComponentProps"];

// ErrorBoundary
export type ErrorBoundaryProps = Annotations["ErrorBoundaryProps"];
}
62 changes: 62 additions & 0 deletions .react-router/types/app/routes/+types/portal.downloads.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
// Generated by React Router

import type { GetInfo, GetAnnotations } from "react-router/internal";

type Module = typeof import("../portal.downloads.js")

type Info = GetInfo<{
file: "routes/portal.downloads.tsx",
module: Module
}>

type Matches = [{
id: "root";
module: typeof import("../../root.js");
}, {
id: "routes/portal.downloads";
module: typeof import("../portal.downloads.js");
}];

type Annotations = GetAnnotations<Info & { module: Module, matches: Matches }, false>;

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"];

// Component
export type ComponentProps = Annotations["ComponentProps"];

// ErrorBoundary
export type ErrorBoundaryProps = Annotations["ErrorBoundaryProps"];
}
Loading