[WEB-2884] chore: Update timezone list, add new endpoint, and update timezone dropdowns (#6231)

* dev: updated timezones list

* chore: added rate limiting
This commit is contained in:
guru_sainath 2024-12-19 20:15:55 +05:30 committed by GitHub
parent 0a320a8540
commit 9b71a702c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 444 additions and 59 deletions

View file

@ -33,3 +33,4 @@ export * from "./favorite";
export * from "./file";
export * from "./workspace-draft-issues/base";
export * from "./command-palette";
export * from "./timezone";

8
packages/types/src/timezone.d.ts vendored Normal file
View file

@ -0,0 +1,8 @@
export type TTimezoneObject = {
utc_offset: string;
gmt_offset: string;
label: string;
value: string;
};
export type TTimezones = { timezones: TTimezoneObject[] };