@seamapi/http 1.62.0 → 1.63.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 +2 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/routes/workspaces/workspaces.d.ts +1 -1
- package/lib/seam/connect/routes/workspaces/workspaces.js +2 -2
- package/lib/seam/connect/routes/workspaces/workspaces.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/workspaces/workspaces.ts +3 -3
- package/src/lib/version.ts +1 -1
package/dist/connect.d.cts
CHANGED
|
@@ -3748,7 +3748,7 @@ type WorkspacesCreateResponse = SetNonNullable<Required<RouteResponse<'/workspac
|
|
|
3748
3748
|
type WorkspacesCreateRequest = SeamHttpRequest<WorkspacesCreateResponse, 'workspace'>;
|
|
3749
3749
|
interface WorkspacesCreateOptions {
|
|
3750
3750
|
}
|
|
3751
|
-
type WorkspacesFindAnythingParameters =
|
|
3751
|
+
type WorkspacesFindAnythingParameters = RouteRequestBody<'/workspaces/find_anything'>;
|
|
3752
3752
|
/**
|
|
3753
3753
|
* @deprecated Use WorkspacesFindAnythingParameters instead.
|
|
3754
3754
|
*/
|
package/dist/index.cjs
CHANGED
|
@@ -8354,8 +8354,8 @@ var _SeamHttpWorkspaces = class _SeamHttpWorkspaces {
|
|
|
8354
8354
|
}
|
|
8355
8355
|
return new SeamHttpRequest(this, {
|
|
8356
8356
|
pathname: "/workspaces/find_anything",
|
|
8357
|
-
method: "
|
|
8358
|
-
|
|
8357
|
+
method: "POST",
|
|
8358
|
+
body: parameters,
|
|
8359
8359
|
responseKey: "batch",
|
|
8360
8360
|
options
|
|
8361
8361
|
});
|