@seamapi/http 1.28.0 → 1.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/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-encoders.d.ts +4 -0
- package/lib/seam/connect/routes/acs-encoders.js +8 -0
- package/lib/seam/connect/routes/acs-encoders.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-encoders.ts +19 -0
- package/src/lib/version.ts +1 -1
package/dist/connect.cjs
CHANGED
|
@@ -1837,6 +1837,14 @@ var SeamHttpAcsEncoders = class _SeamHttpAcsEncoders {
|
|
|
1837
1837
|
options
|
|
1838
1838
|
});
|
|
1839
1839
|
}
|
|
1840
|
+
get(body) {
|
|
1841
|
+
return new SeamHttpRequest(this, {
|
|
1842
|
+
pathname: "/acs/encoders/get",
|
|
1843
|
+
method: "post",
|
|
1844
|
+
body,
|
|
1845
|
+
responseKey: "acs_encoder"
|
|
1846
|
+
});
|
|
1847
|
+
}
|
|
1840
1848
|
list(body) {
|
|
1841
1849
|
return new SeamHttpRequest(this, {
|
|
1842
1850
|
pathname: "/acs/encoders/list",
|