@@ -3,6 +3,7 @@ import { buildGetAdvancedGameSettings } from "./GetAdvancedGameSettings.js";
3
3
import { buildGetServerOptions } from "./GetServerOptions.js" ;
4
4
import { buildHealthCheck } from "./HealthCheck.js" ;
5
5
import { buildPasswordlessLogin } from "./PasswordlessLogin.js" ;
6
+ import { buildPasswordLogin } from "./PasswordLogin.js" ;
6
7
import { buildQueryServerState } from "./QueryServerState.js" ;
7
8
import { buildVerifyAuthenticationToken } from "./VerifyAuthenticationToken.js" ;
8
9
@@ -28,6 +29,12 @@ export function buildV1(options: InternalClientOptions) {
28
29
* This function requires no Authentication.
29
30
*/
30
31
PasswordlessLogin : buildPasswordlessLogin ( options ) ,
32
+ /**
33
+ * Attempts to log in to the Dedicated Server as a player using either Admin Password or Client Protection Password.
34
+ *
35
+ * This function requires no Authentication.
36
+ */
37
+ PasswordLogin : buildPasswordLogin ( options ) ,
31
38
/**
32
39
* Retrieves the current state of the Dedicated Server.
33
40
*/
@@ -49,5 +56,6 @@ export type * from "./GetAdvancedGameSettings.js";
49
56
export type * from "./GetServerOptions.js" ;
50
57
export type * from "./HealthCheck.js" ;
51
58
export type * from "./PasswordlessLogin.js" ;
59
+ export type * from "./PasswordLogin.js" ;
52
60
export type * from "./QueryServerState.js" ;
53
61
export type * from "./VerifyAuthenticationToken.js" ;
0 commit comments