@supernova-studio/client 0.55.11 → 0.55.12
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/index.d.mts +182 -0
- package/dist/index.d.ts +182 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/endpoints/workspace-invites.ts +7 -1
package/dist/index.mjs
CHANGED
|
@@ -6592,6 +6592,11 @@ var WorkspaceInvitationsEndpoint = class {
|
|
|
6592
6592
|
method: "GET"
|
|
6593
6593
|
});
|
|
6594
6594
|
}
|
|
6595
|
+
delete(workspaceId, invitationId) {
|
|
6596
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/invitations/${invitationId}`, DTOWorkspaceResponse, {
|
|
6597
|
+
method: "DELETE"
|
|
6598
|
+
});
|
|
6599
|
+
}
|
|
6595
6600
|
};
|
|
6596
6601
|
|
|
6597
6602
|
// src/api/endpoints/workspace-members.ts
|