@seamapi/http 1.15.0 → 1.17.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 CHANGED
@@ -1197,7 +1197,7 @@ var SeamHttpAccessCodes = class _SeamHttpAccessCodes {
1197
1197
  path: "/access_codes/pull_backup_access_code",
1198
1198
  method: "post",
1199
1199
  body,
1200
- responseKey: "backup_access_code"
1200
+ responseKey: "access_code"
1201
1201
  });
1202
1202
  }
1203
1203
  update(body) {
@@ -1823,6 +1823,14 @@ var SeamHttpAcsCredentials = class _SeamHttpAcsCredentials {
1823
1823
  responseKey: "acs_credential"
1824
1824
  });
1825
1825
  }
1826
+ createOfflineCode(body) {
1827
+ return new SeamHttpRequest(this, {
1828
+ path: "/acs/credentials/create_offline_code",
1829
+ method: "post",
1830
+ body,
1831
+ responseKey: "acs_credential"
1832
+ });
1833
+ }
1826
1834
  delete(body) {
1827
1835
  return new SeamHttpRequest(this, {
1828
1836
  path: "/acs/credentials/delete",