@seamapi/http 1.22.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 CHANGED
@@ -2869,6 +2869,14 @@ var SeamHttpBridges = class _SeamHttpBridges {
2869
2869
  responseKey: "bridge"
2870
2870
  });
2871
2871
  }
2872
+ list(body) {
2873
+ return new SeamHttpRequest(this, {
2874
+ path: "/bridges/list",
2875
+ method: "post",
2876
+ body,
2877
+ responseKey: "bridges"
2878
+ });
2879
+ }
2872
2880
  };
2873
2881
 
2874
2882
  // src/lib/seam/connect/routes/connect-webviews.ts
@@ -4207,6 +4215,14 @@ var SeamHttpPhones = class _SeamHttpPhones {
4207
4215
  responseKey: void 0
4208
4216
  });
4209
4217
  }
4218
+ get(body) {
4219
+ return new SeamHttpRequest(this, {
4220
+ path: "/phones/get",
4221
+ method: "post",
4222
+ body,
4223
+ responseKey: "phone"
4224
+ });
4225
+ }
4210
4226
  list(body) {
4211
4227
  return new SeamHttpRequest(this, {
4212
4228
  path: "/phones/list",