taxtank-core 2.0.111 → 2.0.112
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/taxtank-core.mjs +131 -128
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +19 -18
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -6269,11 +6269,30 @@ declare enum BasiqMessagesEnum {
|
|
|
6269
6269
|
REVOKE_SUCCESS = "Consent to bank feeds has been revoked."
|
|
6270
6270
|
}
|
|
6271
6271
|
|
|
6272
|
+
declare enum UserRolesEnum {
|
|
6273
|
+
FIRM_OWNER = "ROLE_FIRM_OWNER",
|
|
6274
|
+
FIRM_MANAGER = "ROLE_FIRM_MANAGER",
|
|
6275
|
+
FIRM_TOP_MANAGER = "ROLE_FIRM_TOP_MANAGER",
|
|
6276
|
+
CLIENT = "ROLE_CLIENT",
|
|
6277
|
+
EMPLOYEE = "ROLE_EMPLOYEE",
|
|
6278
|
+
ACCOUNTANT = "ROLE_ACCOUNTANT",
|
|
6279
|
+
ADVISOR = "ROLE_ADVISOR",
|
|
6280
|
+
USER = "ROLE_USER",
|
|
6281
|
+
SUBSCRIPTION = "ROLE_USER_SUBSCRIPTION",
|
|
6282
|
+
WORK_TANK = "ROLE_USER_WORK",
|
|
6283
|
+
PROPERTY_TANK = "ROLE_USER_PROPERTY",
|
|
6284
|
+
SOLE_TANK = "ROLE_USER_SOLE",
|
|
6285
|
+
HOLDING_TANK = "ROLE_USER_HOLDING",
|
|
6286
|
+
MONEY_TANK = "ROLE_USER_MONEY",
|
|
6287
|
+
SWITCH_USER = "IS_IMPERSONATOR"
|
|
6288
|
+
}
|
|
6289
|
+
|
|
6272
6290
|
declare class BasiqUserService extends RestService$1<AbstractModel, BasiqUser, Collection<BasiqUser>> {
|
|
6273
6291
|
protected endpointUri: string;
|
|
6274
6292
|
modelClass: typeof BasiqUser;
|
|
6275
6293
|
collectionClass: typeof Collection;
|
|
6276
6294
|
disabledMethods: RestMethod[];
|
|
6295
|
+
roles: UserRolesEnum[];
|
|
6277
6296
|
static basiqApiUrl: string;
|
|
6278
6297
|
static basiqConsentUrl: string;
|
|
6279
6298
|
basiqTokenService: BasiqTokenService;
|
|
@@ -6327,24 +6346,6 @@ declare class BankService extends RestService$1<Bank$1, Bank, Collection<Bank>>
|
|
|
6327
6346
|
static ɵprov: i0.ɵɵInjectableDeclaration<BankService>;
|
|
6328
6347
|
}
|
|
6329
6348
|
|
|
6330
|
-
declare enum UserRolesEnum {
|
|
6331
|
-
FIRM_OWNER = "ROLE_FIRM_OWNER",
|
|
6332
|
-
FIRM_MANAGER = "ROLE_FIRM_MANAGER",
|
|
6333
|
-
FIRM_TOP_MANAGER = "ROLE_FIRM_TOP_MANAGER",
|
|
6334
|
-
CLIENT = "ROLE_CLIENT",
|
|
6335
|
-
EMPLOYEE = "ROLE_EMPLOYEE",
|
|
6336
|
-
ACCOUNTANT = "ROLE_ACCOUNTANT",
|
|
6337
|
-
ADVISOR = "ROLE_ADVISOR",
|
|
6338
|
-
USER = "ROLE_USER",
|
|
6339
|
-
SUBSCRIPTION = "ROLE_USER_SUBSCRIPTION",
|
|
6340
|
-
WORK_TANK = "ROLE_USER_WORK",
|
|
6341
|
-
PROPERTY_TANK = "ROLE_USER_PROPERTY",
|
|
6342
|
-
SOLE_TANK = "ROLE_USER_SOLE",
|
|
6343
|
-
HOLDING_TANK = "ROLE_USER_HOLDING",
|
|
6344
|
-
MONEY_TANK = "ROLE_USER_MONEY",
|
|
6345
|
-
SWITCH_USER = "IS_IMPERSONATOR"
|
|
6346
|
-
}
|
|
6347
|
-
|
|
6348
6349
|
declare class BudgetService extends RestService$1<Budget$1, Budget, BudgetCollection> {
|
|
6349
6350
|
modelClass: typeof Budget;
|
|
6350
6351
|
collectionClass: typeof BudgetCollection;
|