@@ -5606,6 +5606,7 @@ export enum OAuthErrorReason {
56065606 access_token_unavailable_for_processing = "access_token_unavailable_for_processing" ,
56075607 access_token_failed_processing = "access_token_failed_processing" ,
56085608 refresh_token_not_found = "refresh_token_not_found" ,
5609+ refresh_token_type_not_supported = "refresh_token_type_not_supported" ,
56095610 invalid_client_id = "invalid_client_id" ,
56105611 invalid_user_credentials = "invalid_user_credentials" ,
56115612 invalid_grant_type = "invalid_grant_type" ,
@@ -5662,7 +5663,8 @@ export enum OAuthErrorType {
56625663 change_password_required = "change_password_required" ,
56635664 two_factor_required = "two_factor_required" ,
56645665 authorization_pending = "authorization_pending" ,
5665- expired_token = "expired_token"
5666+ expired_token = "expired_token" ,
5667+ unsupported_token_type = "unsupported_token_type"
56665668}
56675669
56685670/**
@@ -6087,6 +6089,7 @@ export interface SearchResponse {
60876089export interface SearchResults < T > {
60886090 results ?: Array < T > ;
60896091 total ?: number ;
6092+ totalEqualToActual ?: boolean ;
60906093}
60916094
60926095/**
@@ -6955,6 +6958,7 @@ export interface UserResponse {
69556958 * @author Brian Pontarelli
69566959 */
69576960export interface UserSearchCriteria extends BaseSearchCriteria {
6961+ accurateTotal ?: boolean ;
69586962 ids ?: Array < UUID > ;
69596963 query ?: string ;
69606964 queryString ?: string ;
0 commit comments