@seamapi/http 0.15.0 → 0.16.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
@@ -1438,6 +1438,14 @@ var SeamHttpAcsEntrances = class _SeamHttpAcsEntrances {
1438
1438
  });
1439
1439
  return data.acs_entrances;
1440
1440
  }
1441
+ async listCredentialsWithAccess(body) {
1442
+ const { data } = await this.client.request({
1443
+ url: "/acs/entrances/list_credentials_with_access",
1444
+ method: "post",
1445
+ data: body
1446
+ });
1447
+ return data.acs_credentials;
1448
+ }
1441
1449
  };
1442
1450
 
1443
1451
  // src/lib/seam/connect/routes/acs-systems.ts
@@ -3156,6 +3164,13 @@ var SeamHttpUserIdentities = class _SeamHttpUserIdentities {
3156
3164
  });
3157
3165
  return data.user_identity;
3158
3166
  }
3167
+ async delete(body) {
3168
+ await this.client.request({
3169
+ url: "/user_identities/delete",
3170
+ method: "post",
3171
+ data: body
3172
+ });
3173
+ }
3159
3174
  async get(body) {
3160
3175
  const { data } = await this.client.request({
3161
3176
  url: "/user_identities/get",