@seamapi/http 1.8.0 → 1.9.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/access-codes.d.ts +4 -0
- package/lib/seam/connect/routes/access-codes.js +8 -0
- package/lib/seam/connect/routes/access-codes.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/access-codes.ts +20 -0
- package/src/lib/version.ts +1 -1
package/dist/connect.cjs
CHANGED
|
@@ -1208,6 +1208,14 @@ var SeamHttpAccessCodes = class _SeamHttpAccessCodes {
|
|
|
1208
1208
|
responseKey: void 0
|
|
1209
1209
|
});
|
|
1210
1210
|
}
|
|
1211
|
+
updateMultiple(body) {
|
|
1212
|
+
return new SeamHttpRequest(this, {
|
|
1213
|
+
path: "/access_codes/update_multiple",
|
|
1214
|
+
method: "post",
|
|
1215
|
+
body,
|
|
1216
|
+
responseKey: void 0
|
|
1217
|
+
});
|
|
1218
|
+
}
|
|
1211
1219
|
};
|
|
1212
1220
|
|
|
1213
1221
|
// src/lib/seam/connect/routes/acs-access-groups-unmanaged.ts
|