@seamapi/http 1.23.0 → 1.24.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 +8 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5 -1
- package/lib/seam/connect/routes/phones.d.ts +4 -0
- package/lib/seam/connect/routes/phones.js +8 -0
- package/lib/seam/connect/routes/phones.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/phones.ts +17 -0
- package/src/lib/version.ts +1 -1
package/dist/connect.cjs
CHANGED
|
@@ -4215,6 +4215,14 @@ var SeamHttpPhones = class _SeamHttpPhones {
|
|
|
4215
4215
|
responseKey: void 0
|
|
4216
4216
|
});
|
|
4217
4217
|
}
|
|
4218
|
+
get(body) {
|
|
4219
|
+
return new SeamHttpRequest(this, {
|
|
4220
|
+
path: "/phones/get",
|
|
4221
|
+
method: "post",
|
|
4222
|
+
body,
|
|
4223
|
+
responseKey: "phone"
|
|
4224
|
+
});
|
|
4225
|
+
}
|
|
4218
4226
|
list(body) {
|
|
4219
4227
|
return new SeamHttpRequest(this, {
|
|
4220
4228
|
path: "/phones/list",
|