@seamapi/http 1.77.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 +48 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +44 -2
- package/dist/index.cjs +48 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/lib/seam/connect/routes/access-grants/access-grants.d.ts +13 -0
- package/lib/seam/connect/routes/access-grants/access-grants.js +9 -0
- package/lib/seam/connect/routes/access-grants/access-grants.js.map +1 -1
- package/lib/seam/connect/routes/access-grants/unmanaged/unmanaged.d.ts +13 -0
- package/lib/seam/connect/routes/access-grants/unmanaged/unmanaged.js +9 -0
- package/lib/seam/connect/routes/access-grants/unmanaged/unmanaged.js.map +1 -1
- package/lib/seam/connect/routes/seam-http-endpoints.d.ts +7 -4
- package/lib/seam/connect/routes/seam-http-endpoints.js +21 -0
- package/lib/seam/connect/routes/seam-http-endpoints.js.map +1 -1
- package/lib/seam/connect/routes/user-identities/unmanaged/unmanaged.d.ts +13 -0
- package/lib/seam/connect/routes/user-identities/unmanaged/unmanaged.js +9 -0
- package/lib/seam/connect/routes/user-identities/unmanaged/unmanaged.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/src/lib/seam/connect/routes/access-grants/access-grants.ts +36 -0
- package/src/lib/seam/connect/routes/access-grants/unmanaged/unmanaged.ts +36 -0
- package/src/lib/seam/connect/routes/seam-http-endpoints.ts +51 -0
- package/src/lib/seam/connect/routes/user-identities/unmanaged/unmanaged.ts +36 -0
- package/src/lib/version.ts +1 -1
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
|
|
@@ -1628,6 +1637,15 @@ var SeamHttpAccessGrants = class _SeamHttpAccessGrants {
|
|
|
1628
1637
|
options
|
|
1629
1638
|
});
|
|
1630
1639
|
}
|
|
1640
|
+
requestAccessMethods(parameters, options = {}) {
|
|
1641
|
+
return new SeamHttpRequest(this, {
|
|
1642
|
+
pathname: "/access_grants/request_access_methods",
|
|
1643
|
+
method: "POST",
|
|
1644
|
+
body: parameters,
|
|
1645
|
+
responseKey: "access_grant",
|
|
1646
|
+
options
|
|
1647
|
+
});
|
|
1648
|
+
}
|
|
1631
1649
|
update(parameters, options = {}) {
|
|
1632
1650
|
return new SeamHttpRequest(this, {
|
|
1633
1651
|
pathname: "/access_grants/update",
|
|
@@ -8231,6 +8249,15 @@ var SeamHttpUserIdentitiesUnmanaged = class _SeamHttpUserIdentitiesUnmanaged {
|
|
|
8231
8249
|
options
|
|
8232
8250
|
});
|
|
8233
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
|
+
}
|
|
8234
8261
|
};
|
|
8235
8262
|
|
|
8236
8263
|
// src/lib/seam/connect/routes/user-identities/user-identities.ts
|
|
@@ -9277,6 +9304,13 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
|
|
|
9277
9304
|
return seam.list(...args);
|
|
9278
9305
|
};
|
|
9279
9306
|
}
|
|
9307
|
+
get "/access_grants/request_access_methods"() {
|
|
9308
|
+
const { client, defaults } = this;
|
|
9309
|
+
return function accessGrantsRequestAccessMethods(...args) {
|
|
9310
|
+
const seam = SeamHttpAccessGrants.fromClient(client, defaults);
|
|
9311
|
+
return seam.requestAccessMethods(...args);
|
|
9312
|
+
};
|
|
9313
|
+
}
|
|
9280
9314
|
get "/access_grants/update"() {
|
|
9281
9315
|
const { client, defaults } = this;
|
|
9282
9316
|
return function accessGrantsUpdate(...args) {
|
|
@@ -9298,6 +9332,13 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
|
|
|
9298
9332
|
return seam.list(...args);
|
|
9299
9333
|
};
|
|
9300
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
|
+
}
|
|
9301
9342
|
get "/access_methods/delete"() {
|
|
9302
9343
|
const { client, defaults } = this;
|
|
9303
9344
|
return function accessMethodsDelete(...args) {
|
|
@@ -10847,6 +10888,13 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
|
|
|
10847
10888
|
return seam.list(...args);
|
|
10848
10889
|
};
|
|
10849
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
|
+
}
|
|
10850
10898
|
get "/webhooks/create"() {
|
|
10851
10899
|
const { client, defaults } = this;
|
|
10852
10900
|
return function webhooksCreate(...args) {
|