@seamapi/http 1.0.0-rc.0 → 1.0.0-rc.1
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/README.md +1 -1
- package/dist/connect.cjs +16 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -1
- package/lib/seam/connect/routes/acs-credentials.d.ts +4 -0
- package/lib/seam/connect/routes/acs-credentials.js +8 -0
- package/lib/seam/connect/routes/acs-credentials.js.map +1 -1
- package/lib/seam/connect/routes/acs-systems.d.ts +4 -0
- package/lib/seam/connect/routes/acs-systems.js +8 -0
- package/lib/seam/connect/routes/acs-systems.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/acs-credentials.ts +23 -0
- package/src/lib/seam/connect/routes/acs-systems.ts +26 -0
- package/src/lib/version.ts +1 -1
package/README.md
CHANGED
|
@@ -351,7 +351,7 @@ const workspaces = await seam.workspaces.list()
|
|
|
351
351
|
|
|
352
352
|
#### Additional Options
|
|
353
353
|
|
|
354
|
-
In addition the various authentication options,
|
|
354
|
+
In addition to the various authentication options,
|
|
355
355
|
the constructor takes some advanced options that affect behavior.
|
|
356
356
|
|
|
357
357
|
```ts
|
package/dist/connect.cjs
CHANGED
|
@@ -1646,6 +1646,14 @@ var SeamHttpAcsCredentials = class _SeamHttpAcsCredentials {
|
|
|
1646
1646
|
responseKey: "acs_credentials"
|
|
1647
1647
|
});
|
|
1648
1648
|
}
|
|
1649
|
+
listAccessibleEntrances(body) {
|
|
1650
|
+
return new SeamHttpRequest(this, {
|
|
1651
|
+
path: "/acs/credentials/list_accessible_entrances",
|
|
1652
|
+
method: "post",
|
|
1653
|
+
body,
|
|
1654
|
+
responseKey: "acs_entrances"
|
|
1655
|
+
});
|
|
1656
|
+
}
|
|
1649
1657
|
unassign(body) {
|
|
1650
1658
|
return new SeamHttpRequest(this, {
|
|
1651
1659
|
path: "/acs/credentials/unassign",
|
|
@@ -1868,6 +1876,14 @@ var SeamHttpAcsSystems = class _SeamHttpAcsSystems {
|
|
|
1868
1876
|
responseKey: "acs_systems"
|
|
1869
1877
|
});
|
|
1870
1878
|
}
|
|
1879
|
+
listCompatibleCredentialManagerAcsSystems(body) {
|
|
1880
|
+
return new SeamHttpRequest(this, {
|
|
1881
|
+
path: "/acs/systems/list_compatible_credential_manager_acs_systems",
|
|
1882
|
+
method: "post",
|
|
1883
|
+
body,
|
|
1884
|
+
responseKey: "acs_systems"
|
|
1885
|
+
});
|
|
1886
|
+
}
|
|
1871
1887
|
};
|
|
1872
1888
|
|
|
1873
1889
|
// src/lib/seam/connect/routes/acs-users.ts
|