@seamapi/http 0.28.0 → 0.29.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/README.md +1 -1
- 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/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-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
|
@@ -1868,6 +1868,14 @@ var SeamHttpAcsSystems = class _SeamHttpAcsSystems {
|
|
|
1868
1868
|
responseKey: "acs_systems"
|
|
1869
1869
|
});
|
|
1870
1870
|
}
|
|
1871
|
+
listCompatibleCredentialManagerAcsSystems(body) {
|
|
1872
|
+
return new SeamHttpRequest(this, {
|
|
1873
|
+
path: "/acs/systems/list_compatible_credential_manager_acs_systems",
|
|
1874
|
+
method: "post",
|
|
1875
|
+
body,
|
|
1876
|
+
responseKey: "acs_systems"
|
|
1877
|
+
});
|
|
1878
|
+
}
|
|
1871
1879
|
};
|
|
1872
1880
|
|
|
1873
1881
|
// src/lib/seam/connect/routes/acs-users.ts
|