@seamapi/http 1.97.0 → 1.98.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
@@ -2116,6 +2116,15 @@ var SeamHttpAcsAccessGroups = class _SeamHttpAcsAccessGroups {
2116
2116
  options
2117
2117
  });
2118
2118
  }
2119
+ delete(parameters, options = {}) {
2120
+ return new SeamHttpRequest(this, {
2121
+ pathname: "/acs/access_groups/delete",
2122
+ method: "POST",
2123
+ body: parameters,
2124
+ responseKey: void 0,
2125
+ options
2126
+ });
2127
+ }
2119
2128
  get(parameters, options = {}) {
2120
2129
  return new SeamHttpRequest(this, {
2121
2130
  pathname: "/acs/access_groups/get",
@@ -10105,6 +10114,13 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
10105
10114
  return seam.addUser(...args);
10106
10115
  };
10107
10116
  }
10117
+ get "/acs/access_groups/delete"() {
10118
+ const { client, defaults } = this;
10119
+ return function acsAccessGroupsDelete(...args) {
10120
+ const seam = SeamHttpAcsAccessGroups.fromClient(client, defaults);
10121
+ return seam.delete(...args);
10122
+ };
10123
+ }
10108
10124
  get "/acs/access_groups/get"() {
10109
10125
  const { client, defaults } = this;
10110
10126
  return function acsAccessGroupsGet(...args) {