@@ -102,8 +102,9 @@ public interface IAdminAuthenticationApiSync : IApiAccessor
102
102
/// <param name="skip">Specifies the offset for the first records to return. (optional)</param>
103
103
/// <param name="order">Specifies the order in which to sort the results. (optional)</param>
104
104
/// <param name="email">Specifies the email address of the user. (optional)</param>
105
+ /// <param name="externalUserId">Specifies the external user ID. (optional)</param>
105
106
/// <returns>AuthPlayerListResponse</returns>
106
- AuthPlayerListResponse GetAuthPlayers ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) ) ;
107
+ AuthPlayerListResponse GetAuthPlayers ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) , string externalUserId = default ( string ) ) ;
107
108
108
109
/// <summary>
109
110
/// List authenticated players.
@@ -116,8 +117,9 @@ public interface IAdminAuthenticationApiSync : IApiAccessor
116
117
/// <param name="skip">Specifies the offset for the first records to return. (optional)</param>
117
118
/// <param name="order">Specifies the order in which to sort the results. (optional)</param>
118
119
/// <param name="email">Specifies the email address of the user. (optional)</param>
120
+ /// <param name="externalUserId">Specifies the external user ID. (optional)</param>
119
121
/// <returns>ApiResponse of AuthPlayerListResponse</returns>
120
- ApiResponse < AuthPlayerListResponse > GetAuthPlayersWithHttpInfo ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) ) ;
122
+ ApiResponse < AuthPlayerListResponse > GetAuthPlayersWithHttpInfo ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) , string externalUserId = default ( string ) ) ;
121
123
/// <summary>
122
124
/// Get oauth configuration.
123
125
/// </summary>
@@ -314,9 +316,10 @@ public interface IAdminAuthenticationApiAsync : IApiAccessor
314
316
/// <param name="skip">Specifies the offset for the first records to return. (optional)</param>
315
317
/// <param name="order">Specifies the order in which to sort the results. (optional)</param>
316
318
/// <param name="email">Specifies the email address of the user. (optional)</param>
319
+ /// <param name="externalUserId">Specifies the external user ID. (optional)</param>
317
320
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
318
321
/// <returns>Task of AuthPlayerListResponse</returns>
319
- System . Threading . Tasks . Task < AuthPlayerListResponse > GetAuthPlayersAsync ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) ;
322
+ System . Threading . Tasks . Task < AuthPlayerListResponse > GetAuthPlayersAsync ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) , string externalUserId = default ( string ) , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) ;
320
323
321
324
/// <summary>
322
325
/// List authenticated players.
@@ -329,9 +332,10 @@ public interface IAdminAuthenticationApiAsync : IApiAccessor
329
332
/// <param name="skip">Specifies the offset for the first records to return. (optional)</param>
330
333
/// <param name="order">Specifies the order in which to sort the results. (optional)</param>
331
334
/// <param name="email">Specifies the email address of the user. (optional)</param>
335
+ /// <param name="externalUserId">Specifies the external user ID. (optional)</param>
332
336
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
333
337
/// <returns>Task of ApiResponse (AuthPlayerListResponse)</returns>
334
- System . Threading . Tasks . Task < ApiResponse < AuthPlayerListResponse > > GetAuthPlayersWithHttpInfoAsync ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) ;
338
+ System . Threading . Tasks . Task < ApiResponse < AuthPlayerListResponse > > GetAuthPlayersWithHttpInfoAsync ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) , string externalUserId = default ( string ) , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) ;
335
339
/// <summary>
336
340
/// Get oauth configuration.
337
341
/// </summary>
@@ -1041,10 +1045,11 @@ public Openfort.SDK.Client.ApiResponse<Object> DeleteOAuthConfigWithHttpInfo(OAu
1041
1045
/// <param name="skip">Specifies the offset for the first records to return. (optional)</param>
1042
1046
/// <param name="order">Specifies the order in which to sort the results. (optional)</param>
1043
1047
/// <param name="email">Specifies the email address of the user. (optional)</param>
1048
+ /// <param name="externalUserId">Specifies the external user ID. (optional)</param>
1044
1049
/// <returns>AuthPlayerListResponse</returns>
1045
- public AuthPlayerListResponse GetAuthPlayers ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) )
1050
+ public AuthPlayerListResponse GetAuthPlayers ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) , string externalUserId = default ( string ) )
1046
1051
{
1047
- Openfort . SDK . Client . ApiResponse < AuthPlayerListResponse > localVarResponse = GetAuthPlayersWithHttpInfo ( limit , skip , order , email ) ;
1052
+ Openfort . SDK . Client . ApiResponse < AuthPlayerListResponse > localVarResponse = GetAuthPlayersWithHttpInfo ( limit , skip , order , email , externalUserId ) ;
1048
1053
return localVarResponse . Data ;
1049
1054
}
1050
1055
@@ -1056,8 +1061,9 @@ public Openfort.SDK.Client.ApiResponse<Object> DeleteOAuthConfigWithHttpInfo(OAu
1056
1061
/// <param name="skip">Specifies the offset for the first records to return. (optional)</param>
1057
1062
/// <param name="order">Specifies the order in which to sort the results. (optional)</param>
1058
1063
/// <param name="email">Specifies the email address of the user. (optional)</param>
1064
+ /// <param name="externalUserId">Specifies the external user ID. (optional)</param>
1059
1065
/// <returns>ApiResponse of AuthPlayerListResponse</returns>
1060
- public Openfort . SDK . Client . ApiResponse < AuthPlayerListResponse > GetAuthPlayersWithHttpInfo ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) )
1066
+ public Openfort . SDK . Client . ApiResponse < AuthPlayerListResponse > GetAuthPlayersWithHttpInfo ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) , string externalUserId = default ( string ) )
1061
1067
{
1062
1068
Openfort . SDK . Client . RequestOptions localVarRequestOptions = new Openfort . SDK . Client . RequestOptions ( ) ;
1063
1069
@@ -1091,6 +1097,10 @@ public Openfort.SDK.Client.ApiResponse<Object> DeleteOAuthConfigWithHttpInfo(OAu
1091
1097
{
1092
1098
localVarRequestOptions . QueryParameters . Add ( Openfort . SDK . Client . ClientUtils . ParameterToMultiMap ( "" , "email" , email ) ) ;
1093
1099
}
1100
+ if ( externalUserId != null )
1101
+ {
1102
+ localVarRequestOptions . QueryParameters . Add ( Openfort . SDK . Client . ClientUtils . ParameterToMultiMap ( "" , "externalUserId" , externalUserId ) ) ;
1103
+ }
1094
1104
1095
1105
// authentication (sk) required
1096
1106
// bearer authentication required
@@ -1119,11 +1129,12 @@ public Openfort.SDK.Client.ApiResponse<Object> DeleteOAuthConfigWithHttpInfo(OAu
1119
1129
/// <param name="skip">Specifies the offset for the first records to return. (optional)</param>
1120
1130
/// <param name="order">Specifies the order in which to sort the results. (optional)</param>
1121
1131
/// <param name="email">Specifies the email address of the user. (optional)</param>
1132
+ /// <param name="externalUserId">Specifies the external user ID. (optional)</param>
1122
1133
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
1123
1134
/// <returns>Task of AuthPlayerListResponse</returns>
1124
- public async System . Threading . Tasks . Task < AuthPlayerListResponse > GetAuthPlayersAsync ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) )
1135
+ public async System . Threading . Tasks . Task < AuthPlayerListResponse > GetAuthPlayersAsync ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) , string externalUserId = default ( string ) , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) )
1125
1136
{
1126
- Openfort . SDK . Client . ApiResponse < AuthPlayerListResponse > localVarResponse = await GetAuthPlayersWithHttpInfoAsync ( limit , skip , order , email , cancellationToken ) . ConfigureAwait ( false ) ;
1137
+ Openfort . SDK . Client . ApiResponse < AuthPlayerListResponse > localVarResponse = await GetAuthPlayersWithHttpInfoAsync ( limit , skip , order , email , externalUserId , cancellationToken ) . ConfigureAwait ( false ) ;
1127
1138
return localVarResponse . Data ;
1128
1139
}
1129
1140
@@ -1135,9 +1146,10 @@ public Openfort.SDK.Client.ApiResponse<Object> DeleteOAuthConfigWithHttpInfo(OAu
1135
1146
/// <param name="skip">Specifies the offset for the first records to return. (optional)</param>
1136
1147
/// <param name="order">Specifies the order in which to sort the results. (optional)</param>
1137
1148
/// <param name="email">Specifies the email address of the user. (optional)</param>
1149
+ /// <param name="externalUserId">Specifies the external user ID. (optional)</param>
1138
1150
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
1139
1151
/// <returns>Task of ApiResponse (AuthPlayerListResponse)</returns>
1140
- public async System . Threading . Tasks . Task < Openfort . SDK . Client . ApiResponse < AuthPlayerListResponse > > GetAuthPlayersWithHttpInfoAsync ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) )
1152
+ public async System . Threading . Tasks . Task < Openfort . SDK . Client . ApiResponse < AuthPlayerListResponse > > GetAuthPlayersWithHttpInfoAsync ( int ? limit = default ( int ? ) , int ? skip = default ( int ? ) , SortOrder ? order = default ( SortOrder ? ) , string email = default ( string ) , string externalUserId = default ( string ) , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) )
1141
1153
{
1142
1154
1143
1155
Openfort . SDK . Client . RequestOptions localVarRequestOptions = new Openfort . SDK . Client . RequestOptions ( ) ;
@@ -1173,6 +1185,10 @@ public Openfort.SDK.Client.ApiResponse<Object> DeleteOAuthConfigWithHttpInfo(OAu
1173
1185
{
1174
1186
localVarRequestOptions . QueryParameters . Add ( Openfort . SDK . Client . ClientUtils . ParameterToMultiMap ( "" , "email" , email ) ) ;
1175
1187
}
1188
+ if ( externalUserId != null )
1189
+ {
1190
+ localVarRequestOptions . QueryParameters . Add ( Openfort . SDK . Client . ClientUtils . ParameterToMultiMap ( "" , "externalUserId" , externalUserId ) ) ;
1191
+ }
1176
1192
1177
1193
// authentication (sk) required
1178
1194
// bearer authentication required
0 commit comments