vesant-sdk 1.7.0-dev.ab7ff29 → 1.7.0-dev.f9faca4
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/dist/tax/index.d.mts +18 -1
- package/dist/tax/index.d.ts +18 -1
- package/dist/tax/index.js +3 -0
- package/dist/tax/index.js.map +1 -1
- package/dist/tax/index.mjs +3 -0
- package/dist/tax/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3380,6 +3380,9 @@ var TaxClient = class extends BaseClient {
|
|
|
3380
3380
|
});
|
|
3381
3381
|
return res.version;
|
|
3382
3382
|
}
|
|
3383
|
+
async runReminders() {
|
|
3384
|
+
return this.request("/api/v1/tax/reminders/run", { method: "POST" });
|
|
3385
|
+
}
|
|
3383
3386
|
async getComplianceStats(filters) {
|
|
3384
3387
|
const params = {};
|
|
3385
3388
|
if (filters?.time_range) params.time_range = filters.time_range;
|