@talkjs/core 1.6.0 → 1.6.2
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/README.md +14 -1
- package/dist/talkSession.cjs +1 -1
- package/dist/talkSession.d.ts +3 -3
- package/dist/talkSession.js +535 -469
- package/package.json +1 -1
package/dist/talkSession.d.ts
CHANGED
|
@@ -807,7 +807,7 @@ export declare interface CreateUserParams {
|
|
|
807
807
|
/**
|
|
808
808
|
* An {@link https://www.w3.org/International/articles/language-tags/ | IETF language tag}.
|
|
809
809
|
* See the {@link https://talkjs.com/docs/Features/Language_Support/#localization | localization documentation}
|
|
810
|
-
* Default = the locale
|
|
810
|
+
* Default = null, will use the locale set on the dashboard
|
|
811
811
|
*/
|
|
812
812
|
locale?: string;
|
|
813
813
|
/**
|
|
@@ -2085,9 +2085,9 @@ export declare interface SetUserParams {
|
|
|
2085
2085
|
/**
|
|
2086
2086
|
* An {@link https://www.w3.org/International/articles/language-tags/ | IETF language tag}.
|
|
2087
2087
|
* See the {@link https://talkjs.com/docs/Features/Language_Support/#localization | localization documentation}
|
|
2088
|
-
* Default = the locale
|
|
2088
|
+
* Default = null, will use the locale set on the dashboard
|
|
2089
2089
|
*/
|
|
2090
|
-
locale?: string;
|
|
2090
|
+
locale?: string | null;
|
|
2091
2091
|
/**
|
|
2092
2092
|
* An optional URL to a photo which will be displayed as the user's avatar.
|
|
2093
2093
|
* Default = no photo
|