@@ -2,6 +2,7 @@ import type { InternalClientOptions } from "./common.js";
2
2
import { buildGetAdvancedGameSettings } from "./GetAdvancedGameSettings.js" ;
3
3
import { buildGetServerOptions } from "./GetServerOptions.js" ;
4
4
import { buildHealthCheck } from "./HealthCheck.js" ;
5
+ import { buildPasswordlessLogin } from "./PasswordlessLogin.js" ;
5
6
import { buildQueryServerState } from "./QueryServerState.js" ;
6
7
import { buildVerifyAuthenticationToken } from "./VerifyAuthenticationToken.js" ;
7
8
@@ -19,6 +20,14 @@ export function buildV1(options: InternalClientOptions) {
19
20
* This function does not require input parameters and does not return any data.
20
21
*/
21
22
VerifyAuthenticationToken : buildVerifyAuthenticationToken ( options ) ,
23
+ /**
24
+ * Attempts to perform a passwordless login to the Dedicated Server as a player.
25
+ *
26
+ * Passwordless login is possible if the Dedicated Server is not claimed, or if Client Protection Password is not set for the Dedicated Server.
27
+ *
28
+ * This function requires no Authentication.
29
+ */
30
+ PasswordlessLogin : buildPasswordlessLogin ( options ) ,
22
31
/**
23
32
* Retrieves the current state of the Dedicated Server.
24
33
*/
@@ -39,5 +48,6 @@ export type * from "./error.js";
39
48
export type * from "./GetAdvancedGameSettings.js" ;
40
49
export type * from "./GetServerOptions.js" ;
41
50
export type * from "./HealthCheck.js" ;
51
+ export type * from "./PasswordlessLogin.js" ;
42
52
export type * from "./QueryServerState.js" ;
43
53
export type * from "./VerifyAuthenticationToken.js" ;
0 commit comments