vesant-sdk 1.7.0-dev.ab7ff29 → 1.7.0-dev.ac305d8

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.mjs CHANGED
@@ -3329,6 +3329,15 @@ var TaxClient = class extends BaseClient {
3329
3329
  { method: "POST" }
3330
3330
  );
3331
3331
  }
3332
+ async requestTaxFormWithProfile(input) {
3333
+ return this.request(
3334
+ "/api/v1/tax/customer-tax-profiles/request-form-with-profile",
3335
+ {
3336
+ method: "POST",
3337
+ body: JSON.stringify(input)
3338
+ }
3339
+ );
3340
+ }
3332
3341
  async checkTINStatus(customerID) {
3333
3342
  return this.requestWithRetry(
3334
3343
  `/api/v1/tax/customer-tax-profiles/${customerID}/check-tin`,
@@ -3380,6 +3389,9 @@ var TaxClient = class extends BaseClient {
3380
3389
  });
3381
3390
  return res.version;
3382
3391
  }
3392
+ async runReminders() {
3393
+ return this.request("/api/v1/tax/reminders/run", { method: "POST" });
3394
+ }
3383
3395
  async getComplianceStats(filters) {
3384
3396
  const params = {};
3385
3397
  if (filters?.time_range) params.time_range = filters.time_range;