@bizdoc/core 3.9.7 → 3.10.1
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/fesm2022/bizdoc-core.mjs +26 -19
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/index.d.ts +7 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -601,13 +601,14 @@ interface Action {
|
|
601
601
|
options?: any;
|
602
602
|
}
|
603
603
|
interface Options$5 {
|
604
|
+
timeZone?: string;
|
604
605
|
grantAccess?: GrantSettings;
|
605
606
|
outOfOffice?: OutOfOfficeSettings;
|
606
607
|
notifications?: NotificationsSettings;
|
607
608
|
emails?: EmailSettings;
|
608
609
|
guides?: string[];
|
609
|
-
|
610
|
-
|
610
|
+
inboxTouch?: Date;
|
611
|
+
notificationsTouch?: Date;
|
611
612
|
tags?: Tag$1[];
|
612
613
|
}
|
613
614
|
interface GrantSettings {
|
@@ -919,6 +920,7 @@ interface SharedChildConfig {
|
|
919
920
|
};
|
920
921
|
}
|
921
922
|
interface SharedConfig {
|
923
|
+
timeZones?: string[];
|
922
924
|
scheduler?: SchedulerSettings | boolean;
|
923
925
|
analysis?: AnalysisSettings | boolean;
|
924
926
|
hubServerUrl?: string;
|
@@ -1171,6 +1173,8 @@ declare class SessionService {
|
|
1171
1173
|
/** online or set in profile */
|
1172
1174
|
get availabilityState(): AvailabilityState;
|
1173
1175
|
set availabilityState(value: AvailabilityState);
|
1176
|
+
get timeZone(): string;
|
1177
|
+
set timeZone(value: string);
|
1174
1178
|
isInRole(role: string): Observable<boolean>;
|
1175
1179
|
/** */
|
1176
1180
|
get isOutOfOffice(): boolean;
|
@@ -1259,7 +1263,7 @@ declare class TranslateService {
|
|
1259
1263
|
private _gender?;
|
1260
1264
|
get culture(): string;
|
1261
1265
|
constructor(_session: SessionService, _http: HttpClient);
|
1262
|
-
cldr(): Promise<
|
1266
|
+
cldr(): Promise<any[]> | Promise<void>;
|
1263
1267
|
get(key: string, ...args: (string | number)[]): string;
|
1264
1268
|
personalize(key: string, gender?: Gender, ...args: any[]): string;
|
1265
1269
|
i18n(key: string): string;
|