@appsemble/types 0.20.11 → 0.20.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +4 -0
- package/index.ts +5 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -135,6 +135,10 @@ export interface UserInfo {
|
|
|
135
135
|
* The end-user’s locale, represented as a BCP47 language tag.
|
|
136
136
|
*/
|
|
137
137
|
locale?: string;
|
|
138
|
+
/**
|
|
139
|
+
* The end-user’s time zone.
|
|
140
|
+
*/
|
|
141
|
+
zoneinfo?: string;
|
|
138
142
|
}
|
|
139
143
|
/**
|
|
140
144
|
* The payload stored in our JSON web tokens
|
package/index.ts
CHANGED