1
1
import { buildApplyAdvancedGameSettings } from "./ApplyAdvancedGameSettings.js" ;
2
+ import { buildApplyServerOptions } from "./ApplyServerOptions.js" ;
2
3
import { buildClaimServer } from "./ClaimServer.js" ;
3
4
import type { InternalClientOptions } from "./common.js" ;
4
5
import { buildGetAdvancedGameSettings } from "./GetAdvancedGameSettings.js" ;
@@ -129,10 +130,19 @@ export function buildV1(options: InternalClientOptions) {
129
130
* Function does not return any data on success, and does not take any parameters.
130
131
*/
131
132
Shutdown : buildShutdown ( options ) ,
133
+ /**
134
+ * Applies new Server Options to the Dedicated Server.
135
+ *
136
+ * Requires Admin privileges.
137
+ *
138
+ * Function does not return any data on success.
139
+ */
140
+ ApplyServerOptions : buildApplyServerOptions ( options ) ,
132
141
} ;
133
142
}
134
143
135
144
export type * from "./ApplyAdvancedGameSettings.js" ;
145
+ export type * from "./ApplyServerOptions.js" ;
136
146
export type * from "./ClaimServer.js" ;
137
147
export type * from "./common.js" ;
138
148
export type * from "./error.js" ;
@@ -145,7 +155,7 @@ export type * from "./QueryServerState.js";
145
155
export type * from "./RenameServer.js" ;
146
156
export type * from "./RunCommand.js" ;
147
157
export type * from "./SetAdminPassword.js" ;
148
- export type * from "./Shutdown.js" ;
149
158
export type * from "./SetAutoLoadSessionName.js" ;
150
159
export type * from "./SetClientPassword.js" ;
160
+ export type * from "./Shutdown.js" ;
151
161
export type * from "./VerifyAuthenticationToken.js" ;
0 commit comments