taxtank-core 1.0.74 → 1.0.76

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "1.0.74",
3
+ "version": "1.0.76",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^19.0.2",
@@ -1,4 +1,5 @@
1
1
  export declare enum FirmTypeEnum {
2
2
  ACCOUNTANT = 1,
3
- ADVISOR = 2
3
+ ADVISOR = 2,
4
+ FAMILY_GROUP = 3
4
5
  }
@@ -6,4 +6,6 @@ export declare class MfaDetails extends AbstractModel implements MfaDetailsInter
6
6
  email: string;
7
7
  emailAuthEnabled: string;
8
8
  otpAuthUri: string;
9
+ provider: string;
10
+ isGoogleProvider(): boolean;
9
11
  }
@@ -12,6 +12,7 @@ export declare class MfaDetailsService extends RestService<MfaDetailsInterface,
12
12
  setup(mfaDetails: MfaDetails): Observable<MfaDetails>;
13
13
  confirmGoogle(mfaDetails: MfaDetails, otp: string): Observable<MfaDetails>;
14
14
  sendEmail(mfaDetails: MfaDetails): Observable<MfaDetails>;
15
+ putProvider(mfaDetails: MfaDetails): Observable<MfaDetails>;
15
16
  confirmEmail(mfaDetails: MfaDetails, otp: string): Observable<MfaDetails>;
16
17
  static ɵfac: i0.ɵɵFactoryDeclaration<MfaDetailsService, never>;
17
18
  static ɵprov: i0.ɵɵInjectableDeclaration<MfaDetailsService>;