This commit is contained in:
2026-03-09 06:16:36 +01:00
parent ef54906d9a
commit 40dacc0b62
52 changed files with 1922 additions and 143 deletions
+37
View File
@@ -1,3 +1,7 @@
import { DATASQUIREL_LoggedInUser } from "@moduletrace/datasquirel/dist/package-shared/types";
export type User = DATASQUIREL_LoggedInUser & {};
export const CloudProviders = [
{
title: "Hetzner",
@@ -164,3 +168,36 @@ export type ServiceScriptObject = {
deployment_name: string;
work_dir?: string;
};
export type PagePropsType = {};
export type URLQueryType = {};
export type APIReqObject = {
username?: string;
email?: string;
password?: string;
new_user?: TurboCISignupFormObject;
};
export type LoginFormData = {
username?: string;
email?: string;
password?: string;
};
export type AlertObject = {
text?: string;
field_name?: string;
};
export type WebSocketData = {
user: User;
};
export type TurboCISignupFormObject = {
first_name?: string;
last_name?: string;
email?: string;
password?: string;
confirmed_password?: string;
};