@seamapi/http 1.80.0 → 1.82.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
@@ -3156,6 +3156,15 @@ var SeamHttpAcsSystems = class _SeamHttpAcsSystems {
3156
3156
  options
3157
3157
  });
3158
3158
  }
3159
+ reportDevices(parameters, options = {}) {
3160
+ return new SeamHttpRequest(this, {
3161
+ pathname: "/acs/systems/report_devices",
3162
+ method: "POST",
3163
+ body: parameters,
3164
+ responseKey: void 0,
3165
+ options
3166
+ });
3167
+ }
3159
3168
  };
3160
3169
 
3161
3170
  // src/lib/seam/connect/routes/acs/users/unmanaged/unmanaged.ts
@@ -9899,6 +9908,13 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
9899
9908
  return seam.listCompatibleCredentialManagerAcsSystems(...args);
9900
9909
  };
9901
9910
  }
9911
+ get "/acs/systems/report_devices"() {
9912
+ const { client, defaults } = this;
9913
+ return function acsSystemsReportDevices(...args) {
9914
+ const seam = SeamHttpAcsSystems.fromClient(client, defaults);
9915
+ return seam.reportDevices(...args);
9916
+ };
9917
+ }
9902
9918
  get "/acs/users/add_to_access_group"() {
9903
9919
  const { client, defaults } = this;
9904
9920
  return function acsUsersAddToAccessGroup(...args) {