@seamapi/http 1.63.0 → 1.65.0

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/connect.cjs CHANGED
@@ -3900,6 +3900,15 @@ var _SeamHttpCustomers = class _SeamHttpCustomers {
3900
3900
  options
3901
3901
  });
3902
3902
  }
3903
+ deleteData(parameters, options = {}) {
3904
+ return new SeamHttpRequest(this, {
3905
+ pathname: "/customers/delete_data",
3906
+ method: "POST",
3907
+ body: parameters,
3908
+ responseKey: void 0,
3909
+ options
3910
+ });
3911
+ }
3903
3912
  pushData(parameters, options = {}) {
3904
3913
  return new SeamHttpRequest(this, {
3905
3914
  pathname: "/customers/push_data",
@@ -9133,6 +9142,13 @@ var _SeamHttpEndpoints = class _SeamHttpEndpoints {
9133
9142
  return seam.createPortal(...args);
9134
9143
  };
9135
9144
  }
9145
+ get ["/customers/delete_data"]() {
9146
+ const { client, defaults } = this;
9147
+ return function customersDeleteData(...args) {
9148
+ const seam = SeamHttpCustomers.fromClient(client, defaults);
9149
+ return seam.deleteData(...args);
9150
+ };
9151
+ }
9136
9152
  get ["/customers/push_data"]() {
9137
9153
  const { client, defaults } = this;
9138
9154
  return function customersPushData(...args) {