taxtank-core 0.31.47 → 0.31.49
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/esm2020/lib/forms/address/address.form.mjs +8 -10
- package/esm2020/lib/forms/sole/sole-contact.form.mjs +2 -2
- package/esm2020/lib/interceptors/preloader.interceptor.mjs +2 -2
- package/esm2020/lib/models/endpoint/endpoints.const.mjs +2 -1
- package/esm2020/lib/services/http/bank/basiq/basiq-token.service.mjs +2 -2
- package/esm2020/lib/services/http/user/user.service.mjs +8 -16
- package/esm2020/lib/validators/address-corelogic.validator.mjs +2 -6
- package/fesm2015/taxtank-core.mjs +16 -46
- package/fesm2015/taxtank-core.mjs.map +1 -1
- package/fesm2020/taxtank-core.mjs +15 -44
- package/fesm2020/taxtank-core.mjs.map +1 -1
- package/lib/interceptors/preloader.interceptor.d.ts +1 -1
- package/lib/services/http/user/user.service.d.ts +0 -6
- package/lib/validators/address-corelogic.validator.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { PreloaderService } from '../services
|
|
3
|
+
import { PreloaderService } from '../services';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* interceptor for preloader handling
|
|
@@ -1,22 +1,16 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
1
|
import { Observable } from 'rxjs';
|
|
3
2
|
import { User as UserBase } from '../../../db/Models/user/user';
|
|
4
3
|
import { User } from '../../../models';
|
|
5
|
-
import { EventDispatcherService } from '../../event';
|
|
6
4
|
import { RestMethod, RestService } from '../rest';
|
|
7
5
|
import { Collection } from '../../../collections';
|
|
8
6
|
import { AccountSetupItem } from '../../../models/account-setup/account-setup-item';
|
|
9
7
|
import * as i0 from "@angular/core";
|
|
10
8
|
export declare class UserService extends RestService<UserBase, User, Collection<User>> {
|
|
11
|
-
protected http: HttpClient;
|
|
12
|
-
protected eventDispatcherService: EventDispatcherService;
|
|
13
|
-
protected environment: any;
|
|
14
9
|
modelClass: typeof User;
|
|
15
10
|
collectionClass: typeof Collection;
|
|
16
11
|
endpointUri: string;
|
|
17
12
|
isApiPlatform: boolean;
|
|
18
13
|
disabledMethods: RestMethod[];
|
|
19
|
-
constructor(http: HttpClient, eventDispatcherService: EventDispatcherService, environment: any);
|
|
20
14
|
listenEvents(): void;
|
|
21
15
|
fetch(): Observable<Collection<User>>;
|
|
22
16
|
register(data: object): Observable<object>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ValidatorFn } from '@angular/forms';
|
|
2
2
|
/**
|
|
3
|
+
* @TODO not used temporary, waiting for corelogic support response why it can't find some suburbs (like Hamilton Island)
|
|
3
4
|
* Validator for address, check if corelogic suggestion selected correctly
|
|
4
5
|
*/
|
|
5
6
|
export declare function addressCorelogicValidator(): ValidatorFn;
|