fix(dashboard,js-sdk): remove method and hook for deleting claim (#9668)

This commit is contained in:
Shahed Nasser
2024-10-18 19:43:53 +03:00
committed by GitHub
parent 61e6a07b55
commit 2ea766daf5
2 changed files with 0 additions and 43 deletions

View File

@@ -70,21 +70,6 @@ export class Claim {
)
}
async delete(
id: string,
query?: HttpTypes.SelectParams,
headers?: ClientHeaders
) {
return await this.client.fetch<HttpTypes.AdminClaimDeleteResponse>(
`/admin/claims/${id}`,
{
method: "DELETE",
headers,
query,
}
)
}
async addItems(
id: string,
body: HttpTypes.AdminAddClaimItems,