We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c27d4cf commit 08368f4Copy full SHA for 08368f4
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@makeplane/plane-node-sdk",
3
- "version": "0.2.1",
+ "version": "0.2.2",
4
"description": "Node SDK for Plane",
5
"author": "Plane <engineering@plane.so>",
6
"repository": {
src/api/Modules.ts
@@ -125,6 +125,8 @@ export class Modules extends BaseResource {
125
* Unarchive a module
126
*/
127
async unArchiveModule(workspaceSlug: string, projectId: string, moduleId: string): Promise<void> {
128
- return this.post<void>(`/workspaces/${workspaceSlug}/projects/${projectId}/modules/${moduleId}/unarchive/`);
+ return this.httpDelete(
129
+ `/workspaces/${workspaceSlug}/projects/${projectId}/archived-modules/${moduleId}/unarchive/`
130
+ );
131
}
132
0 commit comments