Skip to content

Commit 8d7e4b6

Browse files
authored
feat(MLX): deprecated UserActionHistory class (#891)
1 parent 2444091 commit 8d7e4b6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/resources/MachineLearning/UserActionHistoryConfiguration/UserActionHistoryConfiguration.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,29 @@
11
import API from '../../../APICore.js';
22
import Resource from '../../Resource.js';
33

4+
/**
5+
* @deprecated Will be removed from the API in January 2025
6+
*/
47
export default class UserActionHistoryConfiguration extends Resource {
58
static baseUrl = `/rest/organizations/${API.orgPlaceholder}/machinelearning/configuration/useractionhistory`;
69

10+
/**
11+
* @deprecated
12+
*/
713
create() {
814
return this.api.post<void>(UserActionHistoryConfiguration.baseUrl);
915
}
1016

17+
/**
18+
* @deprecated
19+
*/
1120
delete() {
1221
return this.api.delete<void>(UserActionHistoryConfiguration.baseUrl);
1322
}
1423

24+
/**
25+
* @deprecated
26+
*/
1527
get() {
1628
return this.api.get<boolean>(UserActionHistoryConfiguration.baseUrl);
1729
}

0 commit comments

Comments
 (0)