diff --git a/change/@microsoft-teams-js-3c6f8950-82f1-4885-8037-46be2096ddb1.json b/change/@microsoft-teams-js-3c6f8950-82f1-4885-8037-46be2096ddb1.json new file mode 100644 index 0000000000..73584bbb92 --- /dev/null +++ b/change/@microsoft-teams-js-3c6f8950-82f1-4885-8037-46be2096ddb1.json @@ -0,0 +1,7 @@ +{ + "type": "minor", + "comment": "Added timezone property to LocaleInfo interface that will allow applications to access the user's timezone information. ", + "packageName": "@microsoft/teams-js", + "email": "ravasili@microsoft.com_msteamsmdb", + "dependentChangeType": "patch" +} diff --git a/packages/teams-js/src/public/interfaces.ts b/packages/teams-js/src/public/interfaces.ts index 9d9e758da6..4f12b43c34 100644 --- a/packages/teams-js/src/public/interfaces.ts +++ b/packages/teams-js/src/public/interfaces.ts @@ -199,6 +199,11 @@ export interface LocaleInfo { * @example 10:10:42 AM */ longTime: string; + /** + * A string representing the timezone of the user's locale in IANA format + * @example 'America/Los_Angeles' + */ + timezone?: string; } /**