taxtank-core 0.32.95 → 0.32.96
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/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/report/property/property-transaction-report.service.mjs +3 -8
- package/fesm2022/taxtank-core.mjs +7 -8
- package/fesm2022/taxtank-core.mjs.map +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/report/property/property-transaction-report.service.d.ts +2 -6
- package/package.json +1 -1
@@ -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>;
|
@@ -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.)
|