taxtank-core 2.0.12 → 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 +27 -14
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +4 -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;
|