[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:
parent
0a320a8540
commit
9b71a702c7
12 changed files with 444 additions and 59 deletions
1
packages/types/src/index.d.ts
vendored
1
packages/types/src/index.d.ts
vendored
|
|
@ -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
8
packages/types/src/timezone.d.ts
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
export type TTimezoneObject = {
|
||||
utc_offset: string;
|
||||
gmt_offset: string;
|
||||
label: string;
|
||||
value: string;
|
||||
};
|
||||
|
||||
export type TTimezones = { timezones: TTimezoneObject[] };
|
||||
Loading…
Add table
Add a link
Reference in a new issue