@onbeam/player-api-client
Advanced tools
Comparing version 2.0.9 to 2.0.10
@@ -1495,2 +1495,9 @@ type ApiRequestOptions = { | ||
getUser(entityId: string): CancelablePromise<GetUserResponse>; | ||
/** | ||
* Unlinks an entity ID from a user | ||
* @param entityId | ||
* @returns GetUserResponse | ||
* @throws ApiError | ||
*/ | ||
unlinkUser(entityId: string): CancelablePromise<GetUserResponse>; | ||
} | ||
@@ -1497,0 +1504,0 @@ |
@@ -1464,2 +1464,17 @@ var __accessCheck = (obj, member, msg) => { | ||
} | ||
/** | ||
* Unlinks an entity ID from a user | ||
* @param entityId | ||
* @returns GetUserResponse | ||
* @throws ApiError | ||
*/ | ||
unlinkUser(entityId) { | ||
return this.httpRequest.request({ | ||
method: "DELETE", | ||
url: "/v1/player/users/{entityId}", | ||
path: { | ||
"entityId": entityId | ||
} | ||
}); | ||
} | ||
}; | ||
@@ -1466,0 +1481,0 @@ |
@@ -26,3 +26,3 @@ { | ||
}, | ||
"version": "2.0.9", | ||
"version": "2.0.10", | ||
"scripts": { | ||
@@ -29,0 +29,0 @@ "generate": "pnpm generate:client && pnpm generate:barrels && pnpm build", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
769466
21362