Updates
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user