@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 +16 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16 -2
- package/dist/index.cjs +16 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +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/seam/connect/routes/user-identities/user-identities.d.ts +13 -0
- package/lib/seam/connect/routes/user-identities/user-identities.js +9 -0
- package/lib/seam/connect/routes/user-identities/user-identities.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/seam-http-endpoints.ts +17 -0
- package/src/lib/seam/connect/routes/user-identities/user-identities.ts +36 -0
- package/src/lib/version.ts +1 -1
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) {
|