diff --git a/package.json b/package.json index 75ad187..33630b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "unibook-client", - "version": "1.0.26", + "version": "1.0.27", "repository": "https://github.com/HyunsDev/unibook-client.git", "author": "혀느현스 ", "license": "Unlicense", diff --git a/src/client.ts b/src/client.ts index b5b42d3..96dfed0 100644 --- a/src/client.ts +++ b/src/client.ts @@ -57,6 +57,7 @@ import { UpdateUser, UpdateUserProfileImage, UploadFile, + DeleteUser, } from "./endpoint"; export class ProjectBookClient extends EndpointClient { @@ -74,6 +75,7 @@ export class ProjectBookClient extends EndpointClient { readonly UpdateUserProfileImage = this.endpointBuilder( UpdateUserProfileImage ); + readonly DeleteUser = this.endpointBuilder(DeleteUser); readonly ListUserDevice = this.endpointBuilder(ListUserDevice); readonly DeleteUserDevice = this.endpointBuilder(DeleteUserDevice);