taxtank-core 0.32.95 → 0.32.97
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/esm2022/lib/forms/report/my-tax/my-tax-rent.form.mjs +1 -1
- package/esm2022/lib/models/report/my-tax/my-tax-rent/my-tax-rent.mjs +4 -9
- package/esm2022/lib/services/http/bank/bank-connection/bank-connection.service.mjs +4 -3
- package/esm2022/lib/services/http/chat/message.service.mjs +2 -2
- package/esm2022/lib/services/http/subscription/service-payment-method/service-payment-method.service.mjs +2 -2
- package/esm2022/lib/services/http/subscription/service-subscription/subscription.service.mjs +2 -2
- package/esm2022/lib/services/http/vehicle/vehicle-claim.service.mjs +16 -6
- package/esm2022/lib/services/report/property/property-transaction-report.service.mjs +5 -9
- package/fesm2022/taxtank-core.mjs +25 -20
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/lib/forms/report/my-tax/my-tax-rent.form.d.ts +1 -1
- package/lib/services/http/bank/bank-connection/bank-connection.service.d.ts +1 -0
- package/lib/services/http/chat/message.service.d.ts +1 -0
- package/lib/services/http/subscription/service-payment-method/service-payment-method.service.d.ts +1 -0
- package/lib/services/http/subscription/service-subscription/subscription.service.d.ts +1 -0
- package/lib/services/http/vehicle/vehicle-claim.service.d.ts +5 -1
- package/lib/services/report/property/property-transaction-report.service.d.ts +2 -6
- package/package.json +1 -1
@@ -1,5 +1,5 @@
|
|
1
1
|
import { AbstractForm } from '../../abstract.form';
|
2
|
-
import { MyTaxRent } from '../../../models/report
|
2
|
+
import { MyTaxRent } from '../../../models/report';
|
3
3
|
export declare class MyTaxRentForm extends AbstractForm<MyTaxRent> {
|
4
4
|
constructor(rent: MyTaxRent);
|
5
5
|
}
|
@@ -15,6 +15,7 @@ export declare class BankConnectionService extends RestService<BankConnectionBas
|
|
15
15
|
collectionClass: typeof Collection;
|
16
16
|
endpointUri: string;
|
17
17
|
disabledMethods: RestMethod[];
|
18
|
+
mercureTopic: string;
|
18
19
|
constructor(environment: any);
|
19
20
|
listenEvents(): void;
|
20
21
|
/**
|
@@ -13,6 +13,7 @@ export declare class MessageService extends RestService<MessageBase, Message, Me
|
|
13
13
|
collectionClass: typeof MessageCollection;
|
14
14
|
endpointUri: string;
|
15
15
|
disabledMethods: RestMethod[];
|
16
|
+
mercureTopic: string;
|
16
17
|
constructor(environment: any);
|
17
18
|
listenEvents(): void;
|
18
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<MessageService, never>;
|
package/lib/services/http/subscription/service-payment-method/service-payment-method.service.d.ts
CHANGED
@@ -10,6 +10,7 @@ export declare class ServicePaymentMethodService extends RestService<ServicePaym
|
|
10
10
|
protected endpointUri: string;
|
11
11
|
collectionClass: typeof Collection;
|
12
12
|
modelClass: typeof ServicePaymentMethod;
|
13
|
+
mercureTopic: string;
|
13
14
|
constructor(environment: any);
|
14
15
|
listenEvents(): void;
|
15
16
|
/**
|
@@ -16,6 +16,7 @@ export declare class SubscriptionService extends RestService<ServiceSubscription
|
|
16
16
|
modelClass: typeof ServiceSubscription;
|
17
17
|
collectionClass: typeof ServiceSubscriptionCollection;
|
18
18
|
disabledMethods: RestMethod[];
|
19
|
+
mercureTopic: string;
|
19
20
|
constructor(http: HttpClient, environment: any);
|
20
21
|
listenEvents(): void;
|
21
22
|
startTrial(subscription: ServiceSubscription): Observable<ServiceSubscription>;
|
@@ -4,11 +4,15 @@ import { RestService } from '../rest/rest-old.service';
|
|
4
4
|
import { Observable } from 'rxjs';
|
5
5
|
import { UserRolesEnum } from '../../../db/Enums/user-roles.enum';
|
6
6
|
import { BestVehicleLogbookCollection } from '../../../collections';
|
7
|
+
import { IEventListener } from '../../../interfaces';
|
7
8
|
import * as i0 from "@angular/core";
|
8
|
-
export declare class VehicleClaimService extends RestService<VehicleClaimBase, VehicleClaim> {
|
9
|
+
export declare class VehicleClaimService extends RestService<VehicleClaimBase, VehicleClaim> implements IEventListener {
|
10
|
+
protected environment: any;
|
9
11
|
modelClass: typeof VehicleClaim;
|
10
12
|
url: string;
|
11
13
|
roles: UserRolesEnum[];
|
14
|
+
constructor(environment: any);
|
15
|
+
listenEvents(): void;
|
12
16
|
add(model: VehicleClaim): Observable<VehicleClaim>;
|
13
17
|
update(model: VehicleClaim, queryParams?: object): Observable<VehicleClaim>;
|
14
18
|
/**
|
@@ -1,11 +1,7 @@
|
|
1
1
|
import { ChartAccountsService, DepreciationService, PropertyService, TransactionService } from '../../http';
|
2
2
|
import { Observable } from 'rxjs';
|
3
|
-
import { Property } from '../../../models
|
4
|
-
import { DepreciationCollection } from '../../../collections
|
5
|
-
import { CollectionDictionary } from '../../../collections/collection-dictionary';
|
6
|
-
import { TransactionCollection } from '../../../collections';
|
7
|
-
import { PropertyReportItemCollection } from '../../../collections/report/property/property-report-item.collection';
|
8
|
-
import { ChartAccountsCollection } from '../../../collections/chart-accounts.collection';
|
3
|
+
import { Property } from '../../../models';
|
4
|
+
import { ChartAccountsCollection, CollectionDictionary, DepreciationCollection, PropertyReportItemCollection, TransactionCollection } from '../../../collections';
|
9
5
|
import * as i0 from "@angular/core";
|
10
6
|
/**
|
11
7
|
* Service to handle Property transactions report items data (get income / expense report items, e.t.c.)
|