taxtank-core 2.0.11 → 2.0.13
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 +30 -17
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +7 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -2166,6 +2166,10 @@ declare class ServicePromoCode extends AbstractModel {
|
|
2166
2166
|
durationMonths?: number;
|
2167
2167
|
customer?: string;
|
2168
2168
|
id?: number;
|
2169
|
+
products: ServiceProduct[];
|
2170
|
+
getProductsIds(): number[];
|
2171
|
+
hasProduct(product: ServiceProduct): boolean;
|
2172
|
+
isProductPercentOff(product: ServiceProduct): boolean;
|
2169
2173
|
isDurationForever(): boolean;
|
2170
2174
|
isDurationOnce(): boolean;
|
2171
2175
|
isDurationRepeating(): boolean;
|
@@ -6346,6 +6350,7 @@ declare class ClientMovementService extends RestService$1<ClientMovement$1, Clie
|
|
6346
6350
|
collectionClass: typeof ClientMovementCollection;
|
6347
6351
|
modelClass: typeof ClientMovement;
|
6348
6352
|
disabledMethods: RestMethod[];
|
6353
|
+
mercureTopic: string;
|
6349
6354
|
constructor(environment: any);
|
6350
6355
|
listenEvents(): void;
|
6351
6356
|
getActive(): Observable<ClientMovementCollection>;
|
@@ -7157,6 +7162,7 @@ declare class ServicePaymentMethodService extends RestService$1<ServicePaymentMe
|
|
7157
7162
|
protected endpointUri: string;
|
7158
7163
|
collectionClass: typeof Collection;
|
7159
7164
|
modelClass: typeof ServicePaymentMethod;
|
7165
|
+
mercureTopic: string;
|
7160
7166
|
constructor(environment: any);
|
7161
7167
|
listenEvents(): void;
|
7162
7168
|
/**
|
@@ -7190,6 +7196,7 @@ declare class SubscriptionService extends RestService$1<ServiceSubscription$1, S
|
|
7190
7196
|
modelClass: typeof ServiceSubscription;
|
7191
7197
|
collectionClass: typeof ServiceSubscriptionCollection;
|
7192
7198
|
disabledMethods: RestMethod[];
|
7199
|
+
mercureTopic: string;
|
7193
7200
|
constructor(http: HttpClient, environment: any);
|
7194
7201
|
listenEvents(): void;
|
7195
7202
|
startTrial(subscription: ServiceSubscription): Observable<ServiceSubscription>;
|