@seamapi/http 1.64.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 +16 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +28 -14
- package/dist/index.cjs +16 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/lib/seam/connect/resolve-action-attempt.d.ts +16 -16
- package/lib/seam/connect/routes/customers/customers.d.ts +13 -0
- package/lib/seam/connect/routes/customers/customers.js +9 -0
- package/lib/seam/connect/routes/customers/customers.js.map +1 -1
- package/lib/seam/connect/routes/seam-http-endpoints.d.ts +3 -2
- package/lib/seam/connect/routes/seam-http-endpoints.js +7 -0
- package/lib/seam/connect/routes/seam-http-endpoints.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/src/lib/seam/connect/routes/customers/customers.ts +33 -0
- package/src/lib/seam/connect/routes/seam-http-endpoints.ts +17 -0
- package/src/lib/version.ts +1 -1
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) {
|