@seamapi/http 1.46.0 → 1.47.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 +4 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -2
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/routes/access-grants/access-grants.d.ts +2 -2
- package/lib/seam/connect/routes/access-grants/access-grants.js +2 -2
- package/lib/seam/connect/routes/access-grants/access-grants.js.map +1 -1
- package/lib/seam/connect/routes/spaces/spaces.d.ts +2 -2
- package/lib/seam/connect/routes/spaces/spaces.js +2 -2
- package/lib/seam/connect/routes/spaces/spaces.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 +8 -4
- package/src/lib/seam/connect/routes/spaces/spaces.ts +8 -4
- package/src/lib/version.ts +1 -1
package/dist/connect.cjs
CHANGED
|
@@ -1501,8 +1501,8 @@ var _SeamHttpAccessGrants = class _SeamHttpAccessGrants {
|
|
|
1501
1501
|
get(parameters, options = {}) {
|
|
1502
1502
|
return new SeamHttpRequest(this, {
|
|
1503
1503
|
pathname: "/access_grants/get",
|
|
1504
|
-
method: "
|
|
1505
|
-
|
|
1504
|
+
method: "GET",
|
|
1505
|
+
params: parameters,
|
|
1506
1506
|
responseKey: "access_grant",
|
|
1507
1507
|
options
|
|
1508
1508
|
});
|
|
@@ -6149,8 +6149,8 @@ var _SeamHttpSpaces = class _SeamHttpSpaces {
|
|
|
6149
6149
|
get(parameters, options = {}) {
|
|
6150
6150
|
return new SeamHttpRequest(this, {
|
|
6151
6151
|
pathname: "/spaces/get",
|
|
6152
|
-
method: "
|
|
6153
|
-
|
|
6152
|
+
method: "GET",
|
|
6153
|
+
params: parameters,
|
|
6154
6154
|
responseKey: "space",
|
|
6155
6155
|
options
|
|
6156
6156
|
});
|