@seamapi/http 1.78.0 → 1.79.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
@@ -1494,6 +1494,15 @@ var SeamHttpAccessGrantsUnmanaged = class _SeamHttpAccessGrantsUnmanaged {
1494
1494
  options
1495
1495
  });
1496
1496
  }
1497
+ update(parameters, options = {}) {
1498
+ return new SeamHttpRequest(this, {
1499
+ pathname: "/access_grants/unmanaged/update",
1500
+ method: "PATCH",
1501
+ body: parameters,
1502
+ responseKey: void 0,
1503
+ options
1504
+ });
1505
+ }
1497
1506
  };
1498
1507
 
1499
1508
  // src/lib/seam/connect/routes/access-grants/access-grants.ts
@@ -8240,6 +8249,15 @@ var SeamHttpUserIdentitiesUnmanaged = class _SeamHttpUserIdentitiesUnmanaged {
8240
8249
  options
8241
8250
  });
8242
8251
  }
8252
+ update(parameters, options = {}) {
8253
+ return new SeamHttpRequest(this, {
8254
+ pathname: "/user_identities/unmanaged/update",
8255
+ method: "PATCH",
8256
+ body: parameters,
8257
+ responseKey: void 0,
8258
+ options
8259
+ });
8260
+ }
8243
8261
  };
8244
8262
 
8245
8263
  // src/lib/seam/connect/routes/user-identities/user-identities.ts
@@ -9314,6 +9332,13 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
9314
9332
  return seam.list(...args);
9315
9333
  };
9316
9334
  }
9335
+ get "/access_grants/unmanaged/update"() {
9336
+ const { client, defaults } = this;
9337
+ return function accessGrantsUnmanagedUpdate(...args) {
9338
+ const seam = SeamHttpAccessGrantsUnmanaged.fromClient(client, defaults);
9339
+ return seam.update(...args);
9340
+ };
9341
+ }
9317
9342
  get "/access_methods/delete"() {
9318
9343
  const { client, defaults } = this;
9319
9344
  return function accessMethodsDelete(...args) {
@@ -10863,6 +10888,13 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
10863
10888
  return seam.list(...args);
10864
10889
  };
10865
10890
  }
10891
+ get "/user_identities/unmanaged/update"() {
10892
+ const { client, defaults } = this;
10893
+ return function userIdentitiesUnmanagedUpdate(...args) {
10894
+ const seam = SeamHttpUserIdentitiesUnmanaged.fromClient(client, defaults);
10895
+ return seam.update(...args);
10896
+ };
10897
+ }
10866
10898
  get "/webhooks/create"() {
10867
10899
  const { client, defaults } = this;
10868
10900
  return function webhooksCreate(...args) {