mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
feat: web waitlist modal integration (#1487)
* dev : Updating the limit of the issues in the sidebar and a weight list modal * dev: integrated supabase and implemented web waitlist api endpoint * dev : updated web pro weightlist request * dev: rename typo * dev: web waitlist endpoint update * update: ui fixes * fix: removed supabase from env.example * chore: replaced supabase npm package to cdn * chore: updated supabase req * fix: Handled error status and error message. --------- Co-authored-by: srinivaspendem <you@example.comsrinivaspendem2612@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com>
This commit is contained in:
1
apps/app/types/index.d.ts
vendored
1
apps/app/types/index.d.ts
vendored
@@ -15,6 +15,7 @@ export * from "./importer";
|
||||
export * from "./inbox";
|
||||
export * from "./analytics";
|
||||
export * from "./calendar";
|
||||
export * from "./waitlist";
|
||||
|
||||
export type NestedKeyOf<ObjectType extends object> = {
|
||||
[Key in keyof ObjectType & (string | number)]: ObjectType[Key] extends object
|
||||
|
||||
3
apps/app/types/waitlist.d.ts
vendored
Normal file
3
apps/app/types/waitlist.d.ts
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export interface IWebWaitListResponse {
|
||||
status: string;
|
||||
}
|
||||
1
apps/app/types/workspace.d.ts
vendored
1
apps/app/types/workspace.d.ts
vendored
@@ -14,6 +14,7 @@ export interface IWorkspace {
|
||||
readonly created_by: string;
|
||||
readonly updated_by: string;
|
||||
company_size: number | null;
|
||||
total_issues: number | null;
|
||||
}
|
||||
|
||||
export interface IWorkspaceLite {
|
||||
|
||||
Reference in New Issue
Block a user