@@ -9,6 +9,7 @@ import { buildPasswordLogin } from "./PasswordLogin.js";
9
9
import { buildQueryServerState } from "./QueryServerState.js" ;
10
10
import { buildRenameServer } from "./RenameServer.js" ;
11
11
import { buildSetAdminPassword } from "./SetAdminPassword.js" ;
12
+ import { buildSetAutoLoadSessionName } from "./SetAutoLoadSessionName.js" ;
12
13
import { buildSetClientPassword } from "./SetClientPassword.js" ;
13
14
import { buildVerifyAuthenticationToken } from "./VerifyAuthenticationToken.js" ;
14
15
@@ -98,6 +99,16 @@ export function buildV1(options: InternalClientOptions) {
98
99
* Function does not return any data on success.
99
100
*/
100
101
SetAdminPassword : buildSetAdminPassword ( options ) ,
102
+ /**
103
+ * Updates the name of the session that the Dedicated Server will automatically load on startup.
104
+ *
105
+ * Does not change currently loaded session.
106
+ *
107
+ * Requires Admin privileges.
108
+ *
109
+ * Function does not return any data on success.
110
+ */
111
+ SetAutoLoadSessionName : buildSetAutoLoadSessionName ( options ) ,
101
112
} ;
102
113
}
103
114
@@ -113,5 +124,6 @@ export type * from "./PasswordLogin.js";
113
124
export type * from "./QueryServerState.js" ;
114
125
export type * from "./RenameServer.js" ;
115
126
export type * from "./SetAdminPassword.js" ;
127
+ export type * from "./SetAutoLoadSessionName.js" ;
116
128
export type * from "./SetClientPassword.js" ;
117
129
export type * from "./VerifyAuthenticationToken.js" ;
0 commit comments