taxtank-core 0.17.13 → 0.17.16
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/bundles/taxtank-core.umd.js +34 -2
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/forms/user/password.form.js +1 -1
- package/esm2015/lib/models/chat/chat.js +4 -1
- package/esm2015/lib/services/http/chat/chat.service.js +16 -1
- package/esm2015/lib/validators/password.validator.js +16 -3
- package/fesm2015/taxtank-core.js +33 -3
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/models/chat/chat.d.ts +1 -0
- package/lib/services/http/chat/chat.service.d.ts +4 -0
- package/lib/validators/password.validator.d.ts +6 -0
- package/package.json +1 -1
|
@@ -23,6 +23,10 @@ export declare class ChatService extends RestService<ChatBase, Chat> {
|
|
|
23
23
|
* Listen chats events
|
|
24
24
|
*/
|
|
25
25
|
listenChats(): void;
|
|
26
|
+
/**
|
|
27
|
+
* Update chat's 'updatedAt' field with the last chat's message date for chat list sorting
|
|
28
|
+
*/
|
|
29
|
+
private listenMessages;
|
|
26
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChatService, never>;
|
|
27
31
|
static ɵprov: i0.ɵɵInjectableDeclaration<ChatService>;
|
|
28
32
|
}
|
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
import { ValidatorFn } from '@angular/forms';
|
|
2
|
+
/**
|
|
3
|
+
* Regular expressions that are used to check password strength and valid values
|
|
4
|
+
*/
|
|
5
|
+
export declare const PASSWORD_REGEXPS: {
|
|
6
|
+
[key: string]: RegExp;
|
|
7
|
+
};
|
|
2
8
|
export declare function passwordValidator(): ValidatorFn;
|