@seamapi/http 1.112.0 → 1.113.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
@@ -10087,6 +10087,15 @@ var SeamHttpUserIdentities = class _SeamHttpUserIdentities {
10087
10087
  options
10088
10088
  });
10089
10089
  }
10090
+ listAccessibleEntrances(parameters, options = {}) {
10091
+ return new SeamHttpRequest(this, {
10092
+ pathname: "/user_identities/list_accessible_entrances",
10093
+ method: "POST",
10094
+ body: parameters,
10095
+ responseKey: "acs_entrances",
10096
+ options
10097
+ });
10098
+ }
10090
10099
  listAcsSystems(parameters, options = {}) {
10091
10100
  return new SeamHttpRequest(this, {
10092
10101
  pathname: "/user_identities/list_acs_systems",
@@ -12865,6 +12874,13 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
12865
12874
  return seam.listAccessibleDevices(...args);
12866
12875
  };
12867
12876
  }
12877
+ get "/user_identities/list_accessible_entrances"() {
12878
+ const { client, defaults } = this;
12879
+ return function userIdentitiesListAccessibleEntrances(...args) {
12880
+ const seam = SeamHttpUserIdentities.fromClient(client, defaults);
12881
+ return seam.listAccessibleEntrances(...args);
12882
+ };
12883
+ }
12868
12884
  get "/user_identities/list_acs_systems"() {
12869
12885
  const { client, defaults } = this;
12870
12886
  return function userIdentitiesListAcsSystems(...args) {